Solar Output
Forecast solar energy production for a site.
Endpoint POST https://api.dryapi.dev/predict
Predicts kWh output
Calibration 88%
MAPE 21.1%
MAE $1,762
R² 0.93
Latency 6ms
Cost 3 cr / call
Popularity rank #90
Pricing
Every plan includes all 17 APIs. This model costs 3 credits / call, so each plan buys the calls below.
Calibration (coverage)
88%
Out-of-sample coverage verified on held-out data — a 88% interval really covers 88% of observations.
Data coverage
Geography US sites with sun-hour and irradiance profiles by region.
Temporal Long-term climatology with seasonal variation.
Limitations Shading, tilt/azimuth and inverter losses require site-specific tuning.
Quickstart
request — curl
curl -X POST https://api.dryapi.dev/predict \
-H "Authorization: Bearer $DRYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "energy/solar/v1",
"features": {
// one row per input column the model expects
}
}' response
{
"value": 3.2,
"interval": [2.8, 3.6],
"confidence_interval": { "lower": 2.8, "upper": 3.6, "coverage": 0.88 },
"confidence": { "level": 0.88, "score": 0.84 },
"top_factors": [
{ "feature": "sqft", "impact": 0.42 },
{ "feature": "zip", "impact": 0.31 },
{ "feature": "beds", "impact": 0.18 }
]
}