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