Our high-frequency REST API engine is fully ready to ship. During Phase 1 launch, API keys and telemetry endpoints are calibrated and granted on a request basis.
Low-latency JSON responses for 22 European bidding zones (ENTSO-E), grid frequency, and renewable generation mix.
Subscribe to automated HTTP POST webhooks whenever grid congestion or price spikes trigger Critical signals.
Custom token-bucket quotas tailored to your trading desk's specific query frequency and infrastructure requirements.
import requests
API_KEY = "enerx_live_9f83a2c1b4e5d6f7a8b9c0d1e2f3a4b5" # Granted upon request
URL = "https://enerxai.io/api/v1/zones"
headers = {
"x-api-key": API_KEY,
"Content-Type": "application/json"
}
response = requests.get(URL, headers=headers)
data = response.json()
print(f"Total Bidding Zones Monitored: {data['total_zones']}")
for zone in data['data']:
print(f"Zone: {zone['zone_code']} | Price: €{zone['day_ahead_price']}/MWh | Stress: {zone['stress_score']}/100")Endpoints ready to ship. Granted upon request.
Returns live ENTSO-E grid stress scores, day-ahead electricity prices, carbon intensity, and renewable generation percentages across 22 European bidding zones.
Fetches active high-stress grid congestion alerts, transmission bottleneck warnings, and price surge anomalies.