> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapeunblocker.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Scrape a single Zillow property's full detail

> Fetches one Zillow property (by `url` or `zpid`) and returns the full record as JSON: `price`, `zestimate`, `rentZestimate`, `beds`, `baths`, `area`, `lotSize`, `yearBuilt`, `homeType`, `status`, `description`, `priceHistory`, `facts`, `parking`, listing `brokerName`/`listingAgent`, `monthlyHoaFee`, `pricePerSqft`, `daysOnZillow`, coordinates and the `photos` gallery. Companion to the Zillow search plugin (`/realestate/zillow`).



## OpenAPI

````yaml /api-reference/openapi.json post /realestate/zillow-detail
openapi: 3.1.0
info:
  title: ScrapeUnblocker API
  description: >-
    Public API for the ScrapeUnblocker proxy/anti-bot service. Authenticate
    every request with the `x-scrapeunblocker-key` header. Three endpoints are
    documented here: page-source extraction, Google SERP scraping, and image
    fetch. All other paths exist for internal operations and are intentionally
    hidden from this spec.
  version: 3.0.0
servers:
  - url: https://api.scrapeunblocker.com
    description: Production
security: []
paths:
  /realestate/zillow-detail:
    post:
      tags:
        - Plugins
      summary: Scrape a single Zillow property's full detail
      description: >-
        Fetches one Zillow property (by `url` or `zpid`) and returns the full
        record as JSON: `price`, `zestimate`, `rentZestimate`, `beds`, `baths`,
        `area`, `lotSize`, `yearBuilt`, `homeType`, `status`, `description`,
        `priceHistory`, `facts`, `parking`, listing `brokerName`/`listingAgent`,
        `monthlyHoaFee`, `pricePerSqft`, `daysOnZillow`, coordinates and the
        `photos` gallery. Companion to the Zillow search plugin
        (`/realestate/zillow`).
      operationId: zillow_detail_realestate_zillow_detail_post
      parameters:
        - name: url
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Zillow property URL, e.g.
              'https://www.zillow.com/homedetails/.../29432984_zpid/'. Either
              url or zpid is required.
            title: Url
          description: >-
            Zillow property URL, e.g.
            'https://www.zillow.com/homedetails/.../29432984_zpid/'. Either url
            or zpid is required.
        - name: zpid
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Zillow property id (zpid), e.g. '29432984'. Alternative to url.
            title: Zpid
          description: Zillow property id (zpid), e.g. '29432984'. Alternative to url.
        - name: proxy_country
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Exit-IP country (ISO-2). Defaults to a US exit for Zillow.
            title: Proxy Country
          description: Exit-IP country (ISO-2). Defaults to a US exit for Zillow.
      responses:
        '200':
          description: JSON with the full property record.
          content:
            application/json:
              schema: {}
        '400':
          description: Invalid or missing url/zpid.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '502':
          description: Blocked by Zillow or property not found.
        '504':
          description: Fetch timed out.
      security:
        - ScrapeUnblockerKey: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ScrapeUnblockerKey:
      type: apiKey
      in: header
      name: x-scrapeunblocker-key
      description: Your ScrapeUnblocker API key. Apply on every request.

````