Enterprise API
Property condition intelligence
for every transaction.
Screen properties at scale. One API call returns AVM, flood zone, seismic risk, permit history, environmental exposure, and condition-adjusted risk flags. Structured JSON. Under 3 seconds.
The API
Three calls cover every use case.
POST /api/v1/screen
Property Screening
Address + optional price. Returns risk flags, AVM, flood zone, walk score, days on market. Under 3 seconds. Designed for batch/portfolio use.
POST /api/v1/research
Property Intelligence
Full research profile: AVM with comps, hazards (flood, seismic, wildfire, air quality), schools, permits, neighborhood scores, and AI synthesis.
POST /api/v1/analyze
Document Analysis
Submit inspection report + disclosure + price. Returns risk score, deal breakers, repair costs, disclosure contradictions, and offer strategy.
# Screen a property in your pipeline
curl -X POST https://www.getofferwise.ai/api/v1/screen \
-H "Authorization: Bearer ow_live_xxxx" \
-H "Content-Type: application/json" \
-d '{"address": "1234 Oak St, San Jose CA 95123", "asking_price": 985000}'
# Response
{ "success": true, "estimated_value": 952000, "price_gap_pct": 3.5,
"risk_flags": [{ "flag": "overpriced", "severity": "medium" }],
"flood_zone": "X", "walk_score": 72, "research_time_ms": 2800 }