{
  "name": "ENTSO-E Prices API",
  "version": "1.0.0",
  "description": "API interface for querying electricity prices from ENTSO-E data",
  "note": "All timestamps are in UTC.",
  "endpoints": {
    "GET /prices/range": {
      "description": "Get prices for a specific date range",
      "parameters": {
        "start": "Start date (YYYY-MM-DD or YYYY-MM-DD HH:MM:SS)",
        "end": "End date (YYYY-MM-DD or YYYY-MM-DD HH:MM:SS)"
      },
      "example": "/prices/range?start=2025-10-01&end=2025-10-02"
    },
    "GET /prices/next24h": {
      "description": "Get prices for the next 24 hours from now",
      "parameters": "None"
    },
    "GET /prices/today": {
      "description": "Get prices for the current day",
      "parameters": "None"
    },
    "GET /prices/nextquarterly": {
      "description": "Get all quarterly prices from now until the end of available data",
      "parameters": "None"
    },
    "GET /prices/status": {
      "description": "Get API status and data summary",
      "parameters": "None"
    }
  }
}
