Investment Score
Score a property's attractiveness as an investment.
Endpoint POST https://api.dryapi.dev/predict
Predicts investment score
Calibration 89%
MAPE 73.2%
MAE $3.47
R² 0.91
Latency 7ms
Cost 4 cr / call
Popularity rank #68
Pricing
Every plan includes all 17 APIs. This model costs 4 credits / call, so each plan buys the calls below.
Calibration (coverage)
89%
Out-of-sample coverage verified on held-out data — a 89% interval really covers 89% of observations.
Data coverage
Geography US markets with rent, price and yield inputs across metro areas.
Temporal Based on current market cycle fundamentals.
Limitations A composite score — validate against your own underwriting criteria before committing capital.
Quickstart
request — curl
curl -X POST https://api.dryapi.dev/predict \
-H "Authorization: Bearer $DRYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "property/investment-score/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.89 },
"confidence": { "level": 0.89, "score": 0.84 },
"top_factors": [
{ "feature": "sqft", "impact": 0.42 },
{ "feature": "zip", "impact": 0.31 },
{ "feature": "beds", "impact": 0.18 }
]
}