get_germany_weekly_spot_market_data
energy-charts.deFetches Germany's 15-minute spot-market chart data for an ISO week from https://energy-charts.de. Returns the full Highcharts series array, including production-by-type, intraday, and IDA auction price series.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_germany_weekly_spot_market_data?
Fetches Germany's 15-minute spot-market chart data for an ISO week from https://energy-charts.de. Returns the full Highcharts series array, including production-by-type, intraday, and IDA auction price series. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass year, iso_week, max_weeks_back and get the result back without maintaining a scraper.
Response
{
"country": "<string>",
"source_url": "<string>",
"resolved_year": 0,
"requested_year": 0,
"highcharts_series": [
{}
],
"resolved_iso_week": 0,
"requested_iso_week": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/3eb6a2aa-63f2-4bd8-bf2b-7b7bd6e5298b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3eb6a2aa-63f2-4bd8-bf2b-7b7bd6e5298b",
"variables": {
"year": 0,
"iso_week": 0,
"max_weeks_back": 12
}
}'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="3eb6a2aa-63f2-4bd8-bf2b-7b7bd6e5298b") — the "get_germany_weekly_spot_market_data" function, which fetches Germany's 15-minute spot-market chart data for an ISO week from https://energy-charts.de. Returns the full Highcharts series array, including production-by-type, intraday, and IDA auction price series.. It takes year (int), iso_week (int), max_weeks_back (int). Return the result as structured JSON.