Same as `info` but always force-fetches fresh data from the source
GET /api/properties/updated-info/
1 credit
Identical response shape to info — see that endpoint's docs for fields and FAQ. The difference: info is the fast lookup and may serve recently stored data; updated-info always returns the freshest available record. Use this when freshness matters more than the ~2-second latency cost — pricing decisions, just-listed alerts, post-sale confirmation. Costs 1 credit per call (cheaper than info because the cache hit-rate doesn't apply).
Parameters
property_address(query, required) — Full US property address to re-fetch fresh from the source.
Responses
200400— property_address is missing or could not be resolved to a property.401— Authentication failed — missing or invalid API key. Costs 0 credits.402— Payment required — no active subscription or insufficient credit balance. Costs 0 credits.404— Not found — the address could not be confidently matched to a single property. The body includes a did_you_mean array of suggested addresses (each with an mpr_id) to show the user and retry with; an empty array means no close match. Costs 0 credits.
More in Property Lookup
- Suggest US property addresses from a partial string —
GET /api/properties/auto-complete/
Up to 5 address suggestions matching a partial address string. - Full property record for a US residential property —
GET /api/properties/info/
Full property record for a single US residential property — address, coordinates, listing status and price, AVM-estimated value, size, days on market, building/lot/parking/interior breakdown, listing-office details, recent property history, and nearby school ratings. - Paginated, filterable property search with ROI fields —
GET /api/properties/bulk-info/
Paginated search across all US residential properties matching geo + price + bed/bath/sqft/year-built/DOM/lot filters.