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

> Get full Immobiliare.it property listing details by listing id (or listing URL): title, property type, contract (sale/rent/auction), category, price and price per m², condition, building year, surface and its breakdown, rooms, bedrooms, bathrooms, floor, elevator, condominium fees, kitchen, energy class and heating, features, address (zone, microzone, city, province, region), coordinates, description, photos with captions, floorplans, virtual tours and the listing agency.

**Price:** 20 credits

**⚠️ Common errors:** 412: Listing not found (well-formed but nonexistent or expired listing id)



## OpenAPI

````yaml /openapi/real-estate.json post /api/immobiliare/properties
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:
    post:
      tags:
        - /immobiliare
      summary: /immobiliare/properties
      description: >-
        Get full Immobiliare.it property listing details by listing id (or
        listing URL): title, property type, contract (sale/rent/auction),
        category, price and price per m², condition, building year, surface and
        its breakdown, rooms, bedrooms, bathrooms, floor, elevator, condominium
        fees, kitchen, energy class and heating, features, address (zone,
        microzone, city, province, region), coordinates, description, photos
        with captions, floorplans, virtual tours and the listing agency.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent or expired listing id)
      operationId: __api_immobiliare_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImmobiliarePropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ImmobiliareProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ImmobiliarePropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
      type: object
      required:
        - property
    ImmobiliareProperty:
      properties:
        '@type':
          type: string
          default: ImmobiliareProperty
        id:
          type: integer
        url:
          anyOf:
            - type: string
            - type: 'null'
        caption:
          anyOf:
            - type: string
            - type: 'null'
        contract:
          anyOf:
            - type: string
            - type: 'null'
        category:
          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'
        is_auction:
          anyOf:
            - type: boolean
            - type: 'null'
        reference:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        price_per_m2:
          anyOf:
            - type: number
            - type: 'null'
        price_range:
          anyOf:
            - type: string
            - type: 'null'
        condition:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        building_year:
          anyOf:
            - type: integer
            - type: 'null'
        surface:
          anyOf:
            - type: number
            - type: 'null'
        surface_breakdown:
          items:
            $ref: '#/components/schemas/ImmobiliareSurfacePart'
          type: array
          default: []
        rooms:
          anyOf:
            - type: integer
            - type: 'null'
        bedrooms:
          anyOf:
            - type: integer
            - type: 'null'
        bathrooms:
          anyOf:
            - type: integer
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        total_floors:
          anyOf:
            - type: integer
            - type: 'null'
        has_elevator:
          anyOf:
            - type: boolean
            - type: 'null'
        condo_fees:
          anyOf:
            - type: string
            - type: 'null'
        kitchen:
          anyOf:
            - type: string
            - type: 'null'
        energy:
          anyOf:
            - $ref: '#/components/schemas/ImmobiliareEnergy'
            - 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:
            $ref: '#/components/schemas/ImmobiliarePhoto'
          type: array
          default: []
        floorplans:
          items:
            type: string
          type: array
          default: []
        virtual_tours:
          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
    ImmobiliareSurfacePart:
      properties:
        '@type':
          type: string
          default: ImmobiliareSurfacePart
        constitution:
          anyOf:
            - type: string
            - type: 'null'
        surface:
          anyOf:
            - type: string
            - type: 'null'
        commercial_surface:
          anyOf:
            - type: string
            - type: 'null'
        percentage:
          anyOf:
            - type: integer
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        surface_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ImmobiliareEnergy:
      properties:
        '@type':
          type: string
          default: ImmobiliareEnergy
        energy_class:
          anyOf:
            - type: string
            - type: 'null'
        heating:
          anyOf:
            - type: string
            - type: 'null'
        air_conditioning:
          anyOf:
            - type: string
            - type: 'null'
        epi:
          anyOf:
            - type: number
            - type: 'null'
        epi_unit:
          anyOf:
            - type: string
            - type: 'null'
        is_zero_energy_building:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    ImmobiliarePhoto:
      properties:
        '@type':
          type: string
          default: ImmobiliarePhoto
        caption:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    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

````