> ## 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/agencies/properties

> List all real estate listings published by a specific Immobiliare.it agency (by agency id or agency URL). Returns listing cards with title, property type, price, surface, rooms, bedrooms, bathrooms, floor, energy class, condition, address, coordinates, photos and the listing agency.

**Price:** 20 credits per 25 results

**⚠️ Common errors:** 412: Agency not found (well-formed but nonexistent agency id)



## OpenAPI

````yaml /openapi/real-estate.json post /api/immobiliare/agencies/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/agencies/properties:
    post:
      tags:
        - /immobiliare
      summary: /immobiliare/agencies/properties
      description: >-
        List all real estate listings published by a specific Immobiliare.it
        agency (by agency id or agency URL). Returns listing cards with title,
        property type, price, surface, rooms, bedrooms, bathrooms, floor, energy
        class, condition, address, coordinates, photos and the listing agency.


        **Price:** 20 credits per 25 results


        **⚠️ Common errors:** 412: Agency not found (well-formed but nonexistent
        agency id)
      operationId: __api_immobiliare_agencies_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImmobiliareAgencyPropertiesPayload'
      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:
    ImmobiliareAgencyPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        agency:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - agency
        - 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
    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

````