aWATTar · Schema
aWATTar Market Data Response
Schema for the aWATTar API /v1/marketdata endpoint response containing hourly EPEX Spot electricity market prices
ElectricityEnergySpot PriceEPEX SpotDynamic PricingAustriaGermanySmart EnergyIoT
Properties
| Name | Type | Description |
|---|---|---|
| object | string | Type identifier for the response object |
| data | array | Array of hourly market price entries |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/awattar/main/json-schema/awattar-market-data-response.json",
"title": "aWATTar Market Data Response",
"description": "Schema for the aWATTar API /v1/marketdata endpoint response containing hourly EPEX Spot electricity market prices",
"type": "object",
"properties": {
"object": {
"type": "string",
"description": "Type identifier for the response object",
"const": "list"
},
"data": {
"type": "array",
"description": "Array of hourly market price entries",
"items": {
"$ref": "#/$defs/MarketPriceEntry"
}
}
},
"required": ["object", "data"],
"$defs": {
"MarketPriceEntry": {
"title": "Market Price Entry",
"description": "A single hourly electricity market price data point from the EPEX Spot exchange",
"type": "object",
"properties": {
"start_timestamp": {
"type": "integer",
"description": "Start of the pricing interval as Unix epoch timestamp in milliseconds (UTC)",
"examples": [1428591600000]
},
"end_timestamp": {
"type": "integer",
"description": "End of the pricing interval as Unix epoch timestamp in milliseconds (UTC). Typically 3600000 ms (1 hour) after start_timestamp.",
"examples": [1428595200000]
},
"marketprice": {
"type": "number",
"description": "EPEX Spot market price for the interval in EUR/MWh. Can be negative during periods of excess renewable energy supply.",
"examples": [42.09, -5.12, 102.49]
},
"unit": {
"type": "string",
"description": "Unit of measurement for the market price",
"const": "Eur/MWh"
}
},
"required": ["start_timestamp", "end_timestamp", "marketprice", "unit"]
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/awattar-market-data-response"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.