Endpoint Playground
Test Crawlora's Zillow Property 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/property/<zpid>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| zpid (path) | string | Yes | Zillow property id |
{
"code": 200,
"msg": "OK",
"data": {
"zpid": "19952447",
"address": "7862 Jellico Ave, Northridge, CA, 91325",
"url": "https://www.zillow.com/homedetails/19952447_zpid/",
"image": "https://photos.zillowstatic.com/photo.jpg",
"photos": [
"https://photos.zillowstatic.com/photo.jpg"
],
"price": 1299000,
"beds": 4,
"baths": 3,
"living_area": 2400,
"home_status": "FOR_SALE",
"home_type": "SINGLE_FAMILY",
"broker_name": "Example Realty",
"zestimate": 1250000,
"description": "Public property description.",
"address_parts": {
"street": "7862 Jellico Ave",
"city": "Northridge",
"state": "CA",
"zipcode": "91325",
"county": "Los Angeles County"
},
"listing": {
"mls_id": "SR123456",
"source": "CRMLS",
"broker_name": "Example Realty",
"agent_name": "Jane Agent",
"days_on_zillow": 9
},
"pricing": {
"price": 1299000,
"currency": "USD",
"price_per_square_foot": 541,
"zestimate": 1250000,
"rent_zestimate": 6500
},
"history": {
"price": [
{
"date": "2026-05-01",
"event": "Listed for sale",
"price": 1299000,
"source": "CRMLS"
}
],
"tax": [
{
"year": 2025,
"tax_paid": 12345,
"value": 1100000
}
]
},
"media": {
"primary_image": "https://photos.zillowstatic.com/photo.jpg",
"photo_count": 1,
"photos": [
{
"url": "https://photos.zillowstatic.com/photo.jpg",
"width": 1024,
"height": 768
}
],
"has_3d_model": true
},
"schools": [
{
"name": "Example Elementary",
"level": "Elementary",
"rating": 8,
"distance": 0.7,
"assigned": true
}
],
"facts": {
"year_built": 1951,
"lot_size": {
"value": 6062,
"unit": "sqft",
"text": "6,062 sqft"
},
"living_area": {
"value": 2400,
"unit": "sqft",
"text": "2,400 sqft"
},
"heating": [
"Central"
],
"cooling": [
"Central Air"
],
"parking_features": [
"Garage"
],
"architectural_style": "Ranch",
"laundry_features": [
"Inside"
],
"builder_name": "Example Builder"
}
}
}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 property details using Zillow's public persisted GraphQL property payload, including optional typed sections for address parts, listing attribution, pricing, history, media, facts, schools, and nearby homes when present.
{
"code": 200,
"msg": "OK",
"data": {
"zpid": "19952447",
"address": "7862 Jellico Ave, Northridge, CA, 91325",
"url": "https://www.zillow.com/homedetails/19952447_zpid/",
"image": "https://photos.zillowstatic.com/photo.jpg",
"photos": [
"https://photos.zillowstatic.com/photo.jpg"
],
"price": 1299000,
"beds": 4,
"baths": 3,
"living_area": 2400,
"home_status": "FOR_SALE",
"home_type": "SINGLE_FAMILY",
"broker_name": "Example Realty",
"zestimate": 1250000,
"description": "Public property description.",
"address_parts": {
"street": "7862 Jellico Ave",
"city": "Northridge",
"state": "CA",
"zipcode": "91325",
"county": "Los Angeles County"
},
"listing": {
"mls_id": "SR123456",
"source": "CRMLS",
"broker_name": "Example Realty",
"agent_name": "Jane Agent",
"days_on_zillow": 9
},
"pricing": {
"price": 1299000,
"currency": "USD",
"price_per_square_foot": 541,
"zestimate": 1250000,
"rent_zestimate": 6500
},
"history": {
"price": [
{
"date": "2026-05-01",
"event": "Listed for sale",
"price": 1299000,
"source": "CRMLS"
}
],
"tax": [
{
"year": 2025,
"tax_paid": 12345,
"value": 1100000
}
]
},
"media": {
"primary_image": "https://photos.zillowstatic.com/photo.jpg",
"photo_count": 1,
"photos": [
{
"url": "https://photos.zillowstatic.com/photo.jpg",
"width": 1024,
"height": 768
}
],
"has_3d_model": true
},
"schools": [
{
"name": "Example Elementary",
"level": "Elementary",
"rating": 8,
"distance": 0.7,
"assigned": true
}
],
"facts": {
"year_built": 1951,
"lot_size": {
"value": 6062,
"unit": "sqft",
"text": "6,062 sqft"
},
"living_area": {
"value": 2400,
"unit": "sqft",
"text": "2,400 sqft"
},
"heating": [
"Central"
],
"cooling": [
"Central Air"
],
"parking_features": [
"Garage"
],
"architectural_style": "Ranch",
"laundry_features": [
"Inside"
],
"builder_name": "Example Builder"
}
}
}curl "https://api.crawlora.net/api/v1/zillow/property/<zpid>" \
-H "x-api-key: $CRAWLORA_API_KEY"