Energy Demand
Forecast electricity demand for a region.
Endpoint POST https://api.dryapi.dev/predict
Predicts demand
Calibration 100%
MAPE 62.3%
MAE $114,142
R² -0.02
Latency 8ms
Cost 6 cr / call
Popularity rank #65
Pricing
Every plan includes all 17 APIs. This model costs 6 credits / call, so each plan buys the calls below.
Calibration (coverage)
100%
Out-of-sample coverage verified on held-out data — a 100% interval really covers 100% of observations.
Data coverage
Geography Regional and utility-scale demand zones in North America.
Temporal Recent load history with seasonal and temperature context.
Limitations Day-of operational events (outages, extreme heat waves) may exceed forecast bands.
Quickstart
request — curl
curl -X POST https://api.dryapi.dev/predict \
-H "Authorization: Bearer $DRYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "energy/demand/v1",
"features": {
// one row per input column the model expects
}
}' response
{
"value": 42.5,
"interval": [38.2, 46.8],
"confidence_interval": { "lower": 38.2, "upper": 46.8, "coverage": 1.00 },
"confidence": { "level": 1.00, "score": 0.84 },
"top_factors": [
{ "feature": "sqft", "impact": 0.42 },
{ "feature": "zip", "impact": 0.31 },
{ "feature": "beds", "impact": 0.18 }
]
}