← All use cases

Extract real estate listings from Zillow

Pull address, price, bed/bath count, and square footage from a Zillow listing page.

Example request

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"
        }
      }
    }
  }'
Get an API keyFull API docs