Delivery ETA
Predict delivery time between city pairs.
Endpoint POST https://api.dryapi.dev/predict
Predicts eta minutes
Calibration 90%
MAPE 3.9%
MAE $18.48
R² 1.00
Latency 5ms
Cost 2 cr / call
Popularity rank #94
Pricing
Every plan includes all 17 APIs. This model costs 2 credits / call, so each plan buys the calls below.
Calibration (coverage)
90%
Out-of-sample coverage verified on held-out data — a 90% interval really covers 90% of observations.
Data coverage
Geography US and Canadian city pairs with high-volume delivery routes.
Temporal Trained on recent on-road delivery data, refreshed quarterly.
Limitations Severe weather and unplanned traffic events may extend predicted windows.
Quickstart
request — curl
curl -X POST https://api.dryapi.dev/predict \
-H "Authorization: Bearer $DRYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "delivery/eta/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.90 },
"confidence": { "level": 0.90, "score": 0.84 },
"top_factors": [
{ "feature": "sqft", "impact": 0.42 },
{ "feature": "zip", "impact": 0.31 },
{ "feature": "beds", "impact": 0.18 }
]
}