Calibrated intervals
Conformal intervals verified on held-out data. A 90% interval really covers 90%.
Prediction APIs · CPU-native · Sub-10ms
DryAPI turns tabular data into calibrated, explainable forecasts — house prices, freight quotes, crop yields, solar output and more — through one simple REST interface.
curl -X POST https://prod-dryapi-predictor-gateway.magebase-dev.workers.dev/predict \
-H "Authorization: Bearer $DRYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"api": "property/valuation/v1",
"features": { "sqft": 1850, "beds": 3, "baths": 2, "zip": 90210 }
}'
{
"prediction": 512400,
"interval": [468900, 559200],
"confidence": 0.9,
"latency_ms": 4.2,
"top_factors": [
{ "feature": "sqft", "impact": "+18.4%" },
{ "feature": "zip", "impact": "+9.1%" },
{ "feature": "beds", "impact": "+3.7%" }
]
}Every response carries a calibrated confidence interval, SHAP-style top factors and honest metadata — not just a single number.
Conformal intervals verified on held-out data. A 90% interval really covers 90%.
Top contributing features ranked by impact, computed from the model's own trees.
Native LightGBM inference on the edge — no GPUs, no cold-start containers.
From first call to calibrated forecast in under a minute. No model hosting, no ops.
One key and one credit balance unlock the entire catalog.
Pass your features as JSON to the endpoint that matches your problem.
Receive the prediction, a verified interval and the top factors behind it.
Estimate a home's market value from its characteristics and location.
Predicts sale price
Predict fair monthly rent for a property in any market.
Predicts monthly rent
Assess flood, fire, and disaster risk for a property.
Predicts risk score
Score a property's attractiveness as an investment.
Predicts investment score
Price a used car from make, model, year, and condition.
Predicts retail value
Estimate freight shipping cost between corridors.
Predicts freight cost
Plans are platform-wide. Every endpoint simply consumes a different number of credits, so you can explore the whole catalog with a single subscription.