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

# /zoopla/properties/search

> Search Zoopla property listings by location (for sale or to rent), with optional bedroom and price filters. Returns listing cards with address, price, bedrooms, bathrooms, reception rooms, floor area, property type, the listing photo, the listing agent and the listing detail url.

**Price:** 2 credits per 10 results

**⚠️ Common errors:** 412: Location not found (no Zoopla coverage area matches the given location)



## OpenAPI

````yaml /openapi/real-estate.json post /api/zoopla/properties/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/zoopla/properties/search:
    post:
      tags:
        - /zoopla
      summary: /zoopla/properties/search
      description: >-
        Search Zoopla property listings by location (for sale or to rent), with
        optional bedroom and price filters. Returns listing cards with address,
        price, bedrooms, bathrooms, reception rooms, floor area, property type,
        the listing photo, the listing agent and the listing detail url.


        **Price:** 2 credits per 10 results


        **⚠️ Common errors:** 412: Location not found (no Zoopla coverage area
        matches the given location)
      operationId: __api_zoopla_properties_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ZooplaPropertiesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ZooplaSearchListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ZooplaPropertiesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        location:
          type: string
          minLength: 1
        section:
          $ref: '#/components/schemas/ZooplaSection'
          default: for-sale
        beds_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        beds_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        price_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - location
        - count
    ZooplaSearchListing:
      properties:
        '@type':
          type: string
          default: ZooplaSearchListing
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        price_label:
          anyOf:
            - type: string
            - type: 'null'
        price_qualifier:
          anyOf:
            - type: string
            - type: 'null'
        bedroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        bathroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        living_room_count:
          anyOf:
            - type: integer
            - type: 'null'
        size_sqft:
          anyOf:
            - type: integer
            - type: 'null'
        published_at:
          anyOf:
            - type: string
            - type: 'null'
        published_label:
          anyOf:
            - type: string
            - type: 'null'
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
        floor_plan_count:
          anyOf:
            - type: integer
            - type: 'null'
        video_count:
          anyOf:
            - type: integer
            - type: 'null'
        tags:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        agent:
          anyOf:
            - $ref: '#/components/schemas/ZooplaSearchAgent'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ZooplaSection:
      type: string
      enum:
        - for-sale
        - to-rent
    ZooplaSearchAgent:
      properties:
        '@type':
          type: string
          default: ZooplaSearchAgent
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````