> ## 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.

# /immobiliare/properties/search

> Search Immobiliare.it real estate listings by location (city, province, neighbourhood or zone) with contract (sale/rent/auction), property type, price, surface, rooms, bathrooms, floor, condition, garage, garden, heating, balcony/terrace and amenity filters and ordering. Returns listing cards with title, property type, price, surface, rooms, bedrooms, bathrooms, floor, energy class, condition, address, coordinates, photos and the listing agency.

**Price:** 5 credits per 25 results

**⚠️ Common errors:** 412: Location could not be resolved



## OpenAPI

````yaml /openapi/real-estate.json post /api/immobiliare/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/immobiliare/properties/search:
    post:
      tags:
        - /immobiliare
      summary: /immobiliare/properties/search
      description: >-
        Search Immobiliare.it real estate listings by location (city, province,
        neighbourhood or zone) with contract (sale/rent/auction), property type,
        price, surface, rooms, bathrooms, floor, condition, garage, garden,
        heating, balcony/terrace and amenity filters and ordering. Returns
        listing cards with title, property type, price, surface, rooms,
        bedrooms, bathrooms, floor, energy class, condition, address,
        coordinates, photos and the listing agency.


        **Price:** 5 credits per 25 results


        **⚠️ Common errors:** 412: Location could not be resolved
      operationId: __api_immobiliare_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/ImmobiliarePropertiesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ImmobiliarePropertyCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ImmobiliarePropertiesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        location:
          type: string
          minLength: 1
        contract:
          $ref: '#/components/schemas/ImmobiliareContract'
          default: sale
        property_type:
          anyOf:
            - $ref: '#/components/schemas/ImmobiliarePropertyType'
            - type: 'null'
        sort:
          $ref: '#/components/schemas/ImmobiliareSort'
          default: relevance
        min_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_surface:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_surface:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_rooms:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        max_rooms:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        bathrooms:
          anyOf:
            - type: integer
              maximum: 4
              minimum: 1
            - type: 'null'
        floor:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImmobiliareFloor'
              type: array
            - type: 'null'
        condition:
          anyOf:
            - $ref: '#/components/schemas/ImmobiliareCondition'
            - type: 'null'
        garage:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImmobiliareGarage'
              type: array
            - type: 'null'
        garden:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImmobiliareGarden'
              type: array
            - type: 'null'
        heating:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImmobiliareHeating'
              type: array
            - type: 'null'
        outdoor:
          anyOf:
            - items:
                $ref: '#/components/schemas/ImmobiliareOutdoor'
              type: array
            - type: 'null'
        has_elevator:
          anyOf:
            - type: boolean
            - type: 'null'
        is_furnished:
          anyOf:
            - type: boolean
            - type: 'null'
        has_cellar:
          anyOf:
            - type: boolean
            - type: 'null'
        has_pool:
          anyOf:
            - type: boolean
            - type: 'null'
        has_virtual_tour:
          anyOf:
            - type: boolean
            - type: 'null'
        exclude_auctions:
          anyOf:
            - type: boolean
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - location
        - count
    ImmobiliarePropertyCard:
      properties:
        '@type':
          type: string
          default: ImmobiliarePropertyCard
        id:
          type: integer
        url:
          anyOf:
            - type: string
            - type: 'null'
        caption:
          anyOf:
            - type: string
            - type: 'null'
        contract:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        typology:
          anyOf:
            - type: string
            - type: 'null'
        is_new:
          anyOf:
            - type: boolean
            - type: 'null'
        is_luxury:
          anyOf:
            - type: boolean
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        price_range:
          anyOf:
            - type: string
            - type: 'null'
        surface:
          anyOf:
            - type: number
            - type: 'null'
        rooms:
          anyOf:
            - type: integer
            - type: 'null'
        bedrooms:
          anyOf:
            - type: integer
            - type: 'null'
        bathrooms:
          anyOf:
            - type: integer
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        has_elevator:
          anyOf:
            - type: boolean
            - type: 'null'
        energy_class:
          anyOf:
            - type: string
            - type: 'null'
        heating:
          anyOf:
            - type: string
            - type: 'null'
        condition:
          anyOf:
            - type: string
            - type: 'null'
        features:
          items:
            type: string
          type: array
          default: []
        address:
          anyOf:
            - type: string
            - type: 'null'
        zone:
          anyOf:
            - type: string
            - type: 'null'
        microzone:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        province:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        photos:
          items:
            type: string
          type: array
          default: []
        agency:
          anyOf:
            - $ref: '#/components/schemas/ImmobiliareAgency'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ImmobiliareContract:
      type: string
      enum:
        - sale
        - rent
        - auction
    ImmobiliarePropertyType:
      type: string
      enum:
        - apartment
        - attic
        - detached_house
        - loft
        - farmhouse
        - villa
        - terraced_house
    ImmobiliareSort:
      type: string
      enum:
        - relevance
        - price_asc
        - price_desc
        - surface_desc
        - date_desc
    ImmobiliareFloor:
      type: string
      enum:
        - ground_floor
        - intermediate_floors
        - top_floor
    ImmobiliareCondition:
      type: string
      enum:
        - new_or_under_construction
        - excellent_or_renovated
        - good_or_habitable
        - to_be_renovated
    ImmobiliareGarage:
      type: string
      enum:
        - single_garage
        - double_garage
        - parking_space
    ImmobiliareGarden:
      type: string
      enum:
        - private_garden
        - shared_garden
    ImmobiliareHeating:
      type: string
      enum:
        - autonomous
        - centralized
        - air_conditioning
    ImmobiliareOutdoor:
      type: string
      enum:
        - terrace
        - balcony
    ImmobiliareAgency:
      properties:
        '@type':
          type: string
          default: ImmobiliareAgency
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        label:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        agent_name:
          anyOf:
            - type: string
            - type: 'null'
        agent_phone:
          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

````