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

> Get the immowelt real estate price index for a place (geo id): current average, low and high price per m² for apartments and houses (overall and per room count), the price evolution over 1 month, 6 months, 1 and 5 years, the monthly/yearly price history, and the most expensive and cheapest neighbouring areas.

**Price:** 10 credits

**⚠️ Common errors:** 412: Price data not found for the given geo id



## OpenAPI

````yaml /openapi/real-estate.json post /api/immowelt/prices
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/prices:
    post:
      tags:
        - /immowelt
      summary: /immowelt/prices
      description: >-
        Get the immowelt real estate price index for a place (geo id): current
        average, low and high price per m² for apartments and houses (overall
        and per room count), the price evolution over 1 month, 6 months, 1 and 5
        years, the monthly/yearly price history, and the most expensive and
        cheapest neighbouring areas.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Price data not found for the given geo id
      operationId: __api_immowelt_prices_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImmoweltPricesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ImmoweltPrices'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ImmoweltPricesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        place:
          type: string
          minLength: 1
        domain:
          $ref: '#/components/schemas/ImmoweltDomain'
          default: immowelt.de
      type: object
      required:
        - place
    ImmoweltPrices:
      properties:
        '@type':
          type: string
          default: ImmoweltPrices
        place_id:
          type: string
        place_name:
          anyOf:
            - type: string
            - type: 'null'
        place_type:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        transaction_type:
          anyOf:
            - type: string
            - type: 'null'
        apartment:
          anyOf:
            - $ref: '#/components/schemas/ImmoweltAccommodationPrice'
            - type: 'null'
        house:
          anyOf:
            - $ref: '#/components/schemas/ImmoweltAccommodationPrice'
            - type: 'null'
        hybrid:
          anyOf:
            - $ref: '#/components/schemas/ImmoweltAccommodationPrice'
            - type: 'null'
        most_expensive_area:
          anyOf:
            - $ref: '#/components/schemas/ImmoweltChildArea'
            - type: 'null'
        cheapest_area:
          anyOf:
            - $ref: '#/components/schemas/ImmoweltChildArea'
            - type: 'null'
      type: object
      required:
        - place_id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ImmoweltDomain:
      type: string
      enum:
        - immowelt.de
        - immowelt.at
    ImmoweltAccommodationPrice:
      properties:
        '@type':
          type: string
          default: ImmoweltAccommodationPrice
        accommodation_type:
          anyOf:
            - type: string
            - type: 'null'
        average:
          anyOf:
            - type: number
            - type: 'null'
        low:
          anyOf:
            - type: number
            - type: 'null'
        high:
          anyOf:
            - type: number
            - type: 'null'
        accuracy:
          anyOf:
            - type: integer
            - type: 'null'
        date:
          anyOf:
            - type: string
            - type: 'null'
        room_prices:
          items:
            $ref: '#/components/schemas/ImmoweltRoomPrice'
          type: array
          default: []
        evolution:
          items:
            $ref: '#/components/schemas/ImmoweltPriceEvolution'
          type: array
          default: []
        history:
          items:
            $ref: '#/components/schemas/ImmoweltPriceHistoryPoint'
          type: array
          default: []
      type: object
    ImmoweltChildArea:
      properties:
        '@type':
          type: string
          default: ImmoweltChildArea
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        apartment_average:
          anyOf:
            - type: number
            - type: 'null'
        house_average:
          anyOf:
            - type: number
            - 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
    ImmoweltRoomPrice:
      properties:
        '@type':
          type: string
          default: ImmoweltRoomPrice
        rooms:
          anyOf:
            - type: integer
            - type: 'null'
        price_per_m2:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    ImmoweltPriceEvolution:
      properties:
        '@type':
          type: string
          default: ImmoweltPriceEvolution
        period_unit:
          anyOf:
            - type: string
            - type: 'null'
        period_value:
          anyOf:
            - type: integer
            - type: 'null'
        percent:
          anyOf:
            - type: number
            - type: 'null'
        level:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ImmoweltPriceHistoryPoint:
      properties:
        '@type':
          type: string
          default: ImmoweltPriceHistoryPoint
        date:
          anyOf:
            - type: string
            - type: 'null'
        price_per_m2:
          anyOf:
            - type: number
            - type: 'null'
        evolution:
          anyOf:
            - type: number
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````