Pull address, price, bed/bath count, and square footage from a Zillow listing page.
curl -X POST https://api.jsonit.io/v1/extract \
-H "Authorization: Bearer sk_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.zillow.com/homedetails/example",
"schema": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"price": {
"type": "string"
},
"beds": {
"type": "number"
},
"baths": {
"type": "number"
},
"sqft": {
"type": "number"
}
}
}
}'