fetch_public_net_electricity_production
energy-charts.deFetches public net electricity production by technology type at 15-minute resolution from https://energy-charts.de for a country and date range. Returns all technology series definitions and timestamped production records from the Energy-Charts API.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is fetch_public_net_electricity_production?
Fetches public net electricity production by technology type at 15-minute resolution from https://energy-charts.de for a country and date range. Returns all technology series definitions and timestamped production records from the Energy-Charts API. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass country, start, end, subtype and get the result back without maintaining a scraper.
Response
{
"end": "<string>",
"data": [
{
"values": {},
"timestamp": "<string>"
}
],
"unit": "<string>",
"start": "<string>",
"series": [
{
"id": "<string>",
"name": "<string>",
"unit": "<string>"
}
],
"country": "<string>",
"license": "<string>",
"timezone": "<string>",
"deprecated": true,
"available_from": "<string>",
"available_until": "<string>",
"interval_minutes": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/f2bd6a9d-9245-47a1-b8e6-d423fa5b0c08/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f2bd6a9d-9245-47a1-b8e6-d423fa5b0c08",
"variables": {
"country": "de",
"start": "",
"end": "",
"subtype": ""
}
}'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="f2bd6a9d-9245-47a1-b8e6-d423fa5b0c08") — the "fetch_public_net_electricity_production" function, which fetches public net electricity production by technology type at 15-minute resolution from https://energy-charts.de for a country and date range. Returns all technology series definitions and timestamped production records from the Energy-Charts API.. It takes country (str), start (str), end (str), subtype (str). Return the result as structured JSON.