Energy Data
Solar estimates and live electricity prices worldwide
Estimate solar energy production and check electricity prices for any location. Live pricing for UK, EU (40+ countries), Australia, and US. Solar estimates work globally.
Get current electricity prices for any location. Auto-detects region and queries the best source: UK (half-hourly), EU (day-ahead, 40+ countries), Australia (real-time spot), or US (monthly retail by state).
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "energy-data",
"skill": "electricity_prices",
"input": {
"latitude": 51.5074,
"longitude": -0.1278
}
}' \
https://api.toolrouter.com/v1/tools/callEstimate solar energy production for any location worldwide. Returns annual and monthly kWh output, solar radiation, capacity factor, and nearest weather station details.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "energy-data",
"skill": "solar_estimate",
"input": {
"latitude": 39.74,
"longitude": -105,
"system_capacity_kw": 4
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"energy-data","skill":"electricity_prices","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
Does Energy Data work worldwide or only in a few markets?
Solar estimates work globally. Electricity price coverage is regional: UK half-hourly pricing, EU day-ahead pricing, Australian real-time spot pricing, and US state-level retail pricing.
What do I need to provide for an electricity price lookup?
You pass latitude and longitude. The tool uses those coordinates to detect the best regional data source automatically, so you do not need to choose the market yourself.
What do I need to provide for a solar estimate?
Start with latitude and longitude, then optionally tune the system size, module type, roof mount, tilt, and azimuth. If you omit the advanced settings, the tool uses sensible defaults.
Can I use it to estimate solar savings, not just production?
Yes. A common workflow is to estimate annual solar output with `solar_estimate`, then combine that annual kWh figure with local electricity pricing to estimate value or savings.