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

# /immowelt/agencies/properties

> List the real estate listings of an immowelt agency by profile id: returns the agency's active listing references (property id, url and coordinates), enriched with the full listing card where available.

**Price:** 10 credits

**⚠️ Common errors:** 412: Agency not found for the given profile id



## OpenAPI

````yaml /openapi/real-estate.json post /api/immowelt/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/immowelt/agencies/properties:
    post:
      tags:
        - /immowelt
      summary: /immowelt/agencies/properties
      description: >-
        List the real estate listings of an immowelt agency by profile id:
        returns the agency's active listing references (property id, url and
        coordinates), enriched with the full listing card where available.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Agency not found for the given profile id
      operationId: __api_immowelt_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/ImmoweltAgenciesPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ImmoweltAgencyListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ImmoweltAgenciesPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        agency:
          type: string
          minLength: 1
        domain:
          $ref: '#/components/schemas/ImmoweltDomain'
          default: immowelt.de
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - agency
        - count
    ImmoweltAgencyListing:
      properties:
        '@type':
          type: string
          default: ImmoweltAgencyListing
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        listing:
          anyOf:
            - $ref: '#/components/schemas/ImmoweltPropertyCard'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ImmoweltDomain:
      type: string
      enum:
        - immowelt.de
        - immowelt.at
    ImmoweltPropertyCard:
      properties:
        '@type':
          type: string
          default: ImmoweltPropertyCard
        id:
          type: string
        global_id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        document_title:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        distribution_type:
          anyOf:
            - type: string
            - type: 'null'
        provider_type:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_label:
          anyOf:
            - type: string
            - type: 'null'
        price_per_m2:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        area_m2:
          anyOf:
            - type: number
            - type: 'null'
        plot_m2:
          anyOf:
            - type: number
            - type: 'null'
        is_divisible:
          anyOf:
            - type: boolean
            - type: 'null'
        divisible_from_m2:
          anyOf:
            - type: number
            - type: 'null'
        room_count:
          anyOf:
            - type: number
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        energy_class:
          anyOf:
            - type: string
            - type: 'null'
        headline:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/ImmoweltAddress'
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        tags:
          anyOf:
            - $ref: '#/components/schemas/ImmoweltTags'
            - type: 'null'
        agency:
          anyOf:
            - $ref: '#/components/schemas/ImmoweltListingAgency'
            - type: 'null'
      type: object
      required:
        - id
    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
    ImmoweltAddress:
      properties:
        '@type':
          type: string
          default: ImmoweltAddress
        city:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        district:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        federal_state_geo_id:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ImmoweltTags:
      properties:
        '@type':
          type: string
          default: ImmoweltTags
        has_3d_visit:
          anyOf:
            - type: boolean
            - type: 'null'
        has_brokerage_fee:
          anyOf:
            - type: boolean
            - type: 'null'
        is_new:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    ImmoweltListingAgency:
      properties:
        '@type':
          type: string
          default: ImmoweltListingAgency
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        contact_person:
          anyOf:
            - type: string
            - type: 'null'
        is_private_owner:
          anyOf:
            - type: boolean
            - type: 'null'
        publisher_type:
          anyOf:
            - type: string
            - type: 'null'
        phones:
          items:
            type: string
          type: array
          default: []
        website:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        badge:
          anyOf:
            - $ref: '#/components/schemas/ImmoweltBadge'
            - type: 'null'
      type: object
    ImmoweltBadge:
      properties:
        '@type':
          type: string
          default: ImmoweltBadge
        image:
          anyOf:
            - type: string
            - type: 'null'
        duration:
          anyOf:
            - type: string
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````