ZipMarketData is a REST API providing US real estate market data at the ZIP code, city, and metro level. Data is updated daily from three authoritative public sources: Redfin (market stats), HUD (rental data), and US Census Bureau ACS (income/affordability).

Base URL

https://zipmarketdata.com

Authentication

All endpoints except /health and /demo require an API key passed in the x-rapidapi-proxy-secret header:

curl -H "x-rapidapi-proxy-secret: YOUR_KEY" "https://zipmarketdata.com/market-stats?zip_code=78701"

Available Endpoints

EndpointMethodDescriptionAuth
/market-statsGETMarket stats by ZIP codeRequired
/price-historyGET12-month price history by cityRequired
/rental-yieldGETHUD rents + yield by ZIPRequired
/affordabilityGETAffordability index by metroRequired
/property-estimateGETFull investment projection by ZIPRequired
/demoGETPublic demo (no auth)No
/healthGETAPI status and data freshnessNo
/docsGETInteractive Swagger UINo

Rate Limits

120 requests/minute burst. Daily limits depend on your plan tier. Exceeding limits returns HTTP 429 — implement exponential backoff. Cache responses for 24 hours to maximise efficiency.

Interactive Documentation

Explore all endpoints, try live requests, and view full response schemas in the interactive Swagger UI at https://zipmarketdata.com/docs.