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

# /pararius/properties

> Get full Pararius real estate listing details by listing URL (or city/id pair): address and neighbourhood, rental/asking price, deposit, service charge, living area, volume, plot area, number of rooms, bedrooms and bathrooms, energy label, build year, construction type, interior, dwelling type, facilities, situations, full description, photos, coordinates, selling/letting agent, nearby points of interest and the full grouped characteristics sections.

**Price:** 10 credits

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



## OpenAPI

````yaml /openapi/real-estate.json post /api/pararius/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/pararius/properties:
    post:
      tags:
        - /pararius
      summary: /pararius/properties
      description: >-
        Get full Pararius real estate listing details by listing URL (or city/id
        pair): address and neighbourhood, rental/asking price, deposit, service
        charge, living area, volume, plot area, number of rooms, bedrooms and
        bathrooms, energy label, build year, construction type, interior,
        dwelling type, facilities, situations, full description, photos,
        coordinates, selling/letting agent, nearby points of interest and the
        full grouped characteristics sections.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent or expired listing)
      operationId: __api_pararius_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ParariusPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ParariusProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ParariusPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
        city:
          type: string
          default: ''
        listing_id:
          type: string
          default: ''
      type: object
      required:
        - property
    ParariusProperty:
      properties:
        '@type':
          type: string
          default: ParariusProperty
        id:
          type: string
        global_id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        offering_type:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/ParariusPropertyAddress'
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        price_label:
          anyOf:
            - type: string
            - type: 'null'
        price_per_m2:
          anyOf:
            - type: integer
            - type: 'null'
        deposit:
          anyOf:
            - type: integer
            - type: 'null'
        service_charge:
          anyOf:
            - type: integer
            - type: 'null'
        offered_since:
          anyOf:
            - type: string
            - type: 'null'
        available:
          anyOf:
            - type: string
            - type: 'null'
        interior:
          anyOf:
            - type: string
            - type: 'null'
        living_area_m2:
          anyOf:
            - type: integer
            - type: 'null'
        volume_m3:
          anyOf:
            - type: integer
            - type: 'null'
        plot_area_m2:
          anyOf:
            - type: integer
            - type: 'null'
        room_count:
          anyOf:
            - type: integer
            - type: 'null'
        bedroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        bathroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        floor_count:
          anyOf:
            - type: integer
            - type: 'null'
        dwelling_type:
          anyOf:
            - type: string
            - type: 'null'
        construction_type:
          anyOf:
            - type: string
            - type: 'null'
        build_year:
          anyOf:
            - type: integer
            - type: 'null'
        energy_label:
          anyOf:
            - type: string
            - type: 'null'
        facilities:
          items:
            type: string
          type: array
          default: []
        situations:
          items:
            type: string
          type: array
          default: []
        coordinates:
          items:
            type: number
          type: array
          default: []
        images:
          items:
            type: string
          type: array
          default: []
        agent:
          anyOf:
            - $ref: '#/components/schemas/ParariusPropertyAgent'
            - type: 'null'
        points_of_interest:
          items:
            $ref: '#/components/schemas/ParariusPointOfInterest'
          type: array
          default: []
        feature_sections:
          items:
            $ref: '#/components/schemas/ParariusPropertyFeatureSection'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ParariusPropertyAddress:
      properties:
        '@type':
          type: string
          default: ParariusPropertyAddress
        street:
          anyOf:
            - type: string
            - type: 'null'
        postcode:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        district:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ParariusPropertyAgent:
      properties:
        '@type':
          type: string
          default: ParariusPropertyAgent
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ParariusPointOfInterest:
      properties:
        '@type':
          type: string
          default: ParariusPointOfInterest
        category:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        distance:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ParariusPropertyFeatureSection:
      properties:
        '@type':
          type: string
          default: ParariusPropertyFeatureSection
        features:
          items:
            $ref: '#/components/schemas/ParariusPropertyFeature'
          type: array
          default: []
      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
    ParariusPropertyFeature:
      properties:
        '@type':
          type: string
          default: ParariusPropertyFeature
        label:
          anyOf:
            - type: string
            - type: 'null'
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````