get_day_ahead_prices
energy-charts.deFetches 15-minute Day-Ahead auction spot-market prices for a bidding zone and date range from https://energy-charts.de. Returns UTC timestamps, EUR/MWh prices, source status, and license attribution.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_day_ahead_prices?
Fetches 15-minute Day-Ahead auction spot-market prices for a bidding zone and date range from https://energy-charts.de. Returns UTC timestamps, EUR/MWh prices, source status, and license attribution. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass bidding_zone, start_date, end_date and get the result back without maintaining a scraper.
Response
{
"unit": "<string>",
"records": [
{
"timestamp_utc": "<string>",
"price_eur_per_mwh": 0,
"timestamp_unix_seconds": 0
}
],
"end_date": "<string>",
"deprecated": true,
"start_date": "<string>",
"bidding_zone": "<string>",
"license_info": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/7a712927-8264-4857-9e11-b5fb76b4c553/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "7a712927-8264-4857-9e11-b5fb76b4c553",
"variables": {
"bidding_zone": "DE-LU",
"start_date": "",
"end_date": ""
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="7a712927-8264-4857-9e11-b5fb76b4c553") — the "get_day_ahead_prices" function, which fetches 15-minute Day-Ahead auction spot-market prices for a bidding zone and date range from https://energy-charts.de. Returns UTC timestamps, EUR/MWh prices, source status, and license attribution.. It takes bidding_zone (str), start_date (str), end_date (str). Return the result as structured JSON.