Market Aggregates
What are Market Aggregates for?
Using the `market-aggregate` endpoint
curl -X GET "https://query.jua.ai/v1/forecast/market-aggregate\
?models=ept2\
&init_time=2025-10-22T00:00:00Z\
&weighting=wind_capacity\
&market_zones=DE\
&variables=wind_speed_at_height_level_100m\
&max_prediction_timedelta=72\
&include_time=true \
-H "X-API-Key: YOUR_API_KEY" \
-H "Accept: application/json"import requests
url = "https://query.jua.ai/v1/forecast/market-aggregate"
headers = {
"X-API-Key": "YOUR_API_KEY",
"Accept": "application/json"
}
params = {
"models": "ept2",
"init_time": "2025-10-22T00:00:00Z",
"weighting": "wind_capacity",
"market_zones": ["DE"], # Germany
"variables": ["wind_speed_at_height_level_100m"],
"max_prediction_timedelta": 72, # hours
"include_time": True,
}
response = requests.get(url, headers=headers, params=params)
data = response.json()Using the generic `data` endpoint
Last updated