Read as Markdown · Use with an AI agent
Quickstart
Start with Zillow
Find homes for sale and recently sold listings, then inspect property details. Apartment-building results show unit rents, mandatory fees and availability dates separately.
These requests use your API key and can spend credits. Check the current price on the endpoint page; each new page is a separate request. Later examples use illustrative identifiers: replace them with values from your earlier response.
1. Choose a location
Use the returned location display text for a search. Parameters and current cost →
curl "https://www.monocrawl.com/v1/zillow/locations?query=Austin%20TX" \ -H "x-api-key: mn_your_key_here"
2. Find homes for sale
Keep the search filters unchanged when following its cursor. The service returns native result pages. Parameters and current cost →
curl "https://www.monocrawl.com/v1/zillow/search-sale?location=Austin%2C%20TX&max_price=600000&min_beds=3&sort=newest" \ -H "x-api-key: mn_your_key_here"
3. Inspect a home
Use an id from search. Price history, tax history and school data are not supported. Parameters and current cost →
curl "https://www.monocrawl.com/v1/zillow/property?id=29479546" \ -H "x-api-key: mn_your_key_here"
Filters and coverage
Choose filters with the source behavior in mind
| Control | Behavior and limits |
|---|---|
| Search filters | location, min_price, max_price and min_beds constrain searches. Only newest sort is supported. Native pages can vary in size; use the returned cursor. Endpoint reference → |
| Property detail | The available current listing fields do not include historical prices, tax history or school data. Optional estimates can be absent. Endpoint reference → |
| Rental unit meaning | Building records can include units available in the future. Compare available_from_at, base_rent and mandatory monthly fees; do not treat every unit as available now. Endpoint reference → |
Source availability, ordering and field coverage can change. Inspect warnings and partial-result metadata alongside the rows. See runnable workflows, computed fields and pagination and caching.
Choose an endpoint
Match the operation to your task
| Your task | Endpoint | When to use it |
|---|---|---|
| Recently sold homes | search-sold | Read displayed listing prices; these are not independently verified transaction values. |
| Apartment units | building | Use a Zillow apartment-building URL. Unit records may include future availability; compare required fees as well as base rent. |
Explore all documented operations by purpose below. Each endpoint reference contains its accepted parameters and current price.
Search and discovery
Operations
Zillow
Each row is a registry operation: expand it for parameters, a curl built from the registry's own examples, and a Markdown copy of the whole entry. The badge on the right is the operation's state, read at request time — we publish all three rather than rounding up. Recorded proof is historical, not a guarantee of current availability.
- live · proven
- a real upstream response has been served through this API and recorded
- wired · unproven
- a real-data route is registered, but qualifying proof is absent; permission or capacity restrictions may apply
- sample · free
- no live upstream — /v1 refuses it, /sandbox returns a marked sample
Zillow
5 operationsElsewhere
The same registry, other shapes
- Zillow overview — supported data categories and use cases for this platform.
- Full endpoint reference — every platform on one page.
/openapi.jsonor/openapi.yaml— the machine-readable contract, for Postman, Insomnia or a client generator.GET /v1/utility/endpoints?platform=zillow— the same rows to your code at runtime, for 0 credits.