Endpoint Playground
Test Crawlora's Zillow Autocomplete API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/zillow/autocomplete?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Location query | |
| limit | integer | No | Maximum results, clamped to 20 | |
| status | string | No | Search context: for_sale, for_rent, or sold |
{
"code": 200,
"msg": "OK",
"data": {
"query": "Los Angeles, CA",
"request_id": "abc123",
"results": [
{
"id": "region-12447",
"region_id": 12447,
"region_type": 6,
"sub_type": "city",
"state": "CA",
"county": "Los Angeles County",
"city": "Los Angeles"
},
{
"id": "semantic",
"region_id": 12447,
"region_type": 6,
"region_ids": [
12447
],
"region_types": [
6
],
"region_display_ids": [
"12447"
]
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized Zillow public web autocomplete candidates. Semantic candidates may include region_id/region_type compatibility aliases plus region_ids/region_types arrays; prefer complete bounds metadata for Zillow search when present.
{
"code": 200,
"msg": "OK",
"data": {
"query": "Los Angeles, CA",
"request_id": "abc123",
"results": [
{
"id": "region-12447",
"region_id": 12447,
"region_type": 6,
"sub_type": "city",
"state": "CA",
"county": "Los Angeles County",
"city": "Los Angeles"
},
{
"id": "semantic",
"region_id": 12447,
"region_type": 6,
"region_ids": [
12447
],
"region_types": [
6
],
"region_display_ids": [
"12447"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/zillow/autocomplete?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"