Marketplace
No threads yet
Live

get_germany_intraday_prices_volumes

energy-charts.de

Fetches Germany's hourly intraday continuous average prices and trading volumes for an ISO week from chart data files on https://energy-charts.de. Returns timestamped EUR/MWh and MWh pairs with source metadata.

Parameters2
Runs11
Updated10d ago
Degraded11 runs · 72.7% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_germany_intraday_prices_volumes?

Fetches Germany's hourly intraday continuous average prices and trading volumes for an ISO week from chart data files on https://energy-charts.de. Returns timestamped EUR/MWh and MWh pairs with source metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass year, week and get the result back without maintaining a scraper.

Response

{
  "year": 0,
  "country": "<string>",
  "records": [
    {
      "timestamp_utc": "<string>",
      "trading_volume_mwh": 0,
      "average_price_eur_per_mwh": 0,
      "timestamp_unix_milliseconds": 0
    }
  ],
  "iso_week": 0,
  "time_zone": "<string>",
  "datasource": "<string>",
  "price_unit": "<string>",
  "volume_unit": "<string>",
  "bidding_zone": "<string>",
  "price_series_name": "<string>",
  "source_updated_utc": "<string>",
  "volume_series_name": "<string>",
  "source_updated_unix_milliseconds": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c6ab59ba-3901-456a-91ed-dbeff8954359/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c6ab59ba-3901-456a-91ed-dbeff8954359",
    "variables": {
        "year": 0,
        "week": 0
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="c6ab59ba-3901-456a-91ed-dbeff8954359") — the "get_germany_intraday_prices_volumes" function, which fetches Germany's hourly intraday continuous average prices and trading volumes for an ISO week from chart data files on https://energy-charts.de. Returns timestamped EUR/MWh and MWh pairs with source metadata..

It takes year (int), week (int). Return the result as structured JSON.