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

> Search Pararius real estate listings by area (city / city area / district / neighbourhood) and mode (rent or buy), with the full Pararius filter set: property type, price range, bedrooms, rooms, living area, plot area, interior, construction type, construction year, search radius, facilities, location situations, availability, rental period and published-since. Returns listing cards with address, price, living area, rooms, interior, agent, photo and the listing detail url.

**Price:** 20 credits per 30 results



## OpenAPI

````yaml /openapi/real-estate.json post /api/pararius/properties/search
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/search:
    post:
      tags:
        - /pararius
      summary: /pararius/properties/search
      description: >-
        Search Pararius real estate listings by area (city / city area /
        district / neighbourhood) and mode (rent or buy), with the full Pararius
        filter set: property type, price range, bedrooms, rooms, living area,
        plot area, interior, construction type, construction year, search
        radius, facilities, location situations, availability, rental period and
        published-since. Returns listing cards with address, price, living area,
        rooms, interior, agent, photo and the listing detail url.


        **Price:** 20 credits per 30 results
      operationId: __api_pararius_properties_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ParariusPropertiesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ParariusSearchListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ParariusPropertiesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        area:
          type: string
          minLength: 1
        mode:
          $ref: '#/components/schemas/ParariusMode'
          default: for_rent
        count:
          type: integer
          minimum: 1
        property_type:
          anyOf:
            - $ref: '#/components/schemas/ParariusDwellingType'
            - type: 'null'
        price_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        bedrooms_min:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        rooms_min:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        living_area_min:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        plot_area_min:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        interior:
          anyOf:
            - $ref: '#/components/schemas/ParariusInterior'
            - type: 'null'
        construction_type:
          anyOf:
            - $ref: '#/components/schemas/ParariusConstructionType'
            - type: 'null'
        construction_year_min:
          anyOf:
            - type: integer
              minimum: 1500
            - type: 'null'
        construction_year_max:
          anyOf:
            - type: integer
              minimum: 1500
            - type: 'null'
        radius_km:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        facilities:
          anyOf:
            - items:
                $ref: '#/components/schemas/ParariusFacility'
              type: array
            - type: 'null'
        situations:
          anyOf:
            - items:
                $ref: '#/components/schemas/ParariusSituation'
              type: array
            - type: 'null'
        available_from:
          anyOf:
            - $ref: '#/components/schemas/ParariusAvailableFrom'
            - type: 'null'
        rental_period:
          anyOf:
            - $ref: '#/components/schemas/ParariusRentalPeriod'
            - type: 'null'
        published_since_days:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
      type: object
      required:
        - area
        - count
    ParariusSearchListing:
      properties:
        '@type':
          type: string
          default: ParariusSearchListing
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        offering_type:
          anyOf:
            - type: string
            - type: 'null'
        postcode:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        district:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        price_label:
          anyOf:
            - type: string
            - type: 'null'
        living_area_m2:
          anyOf:
            - type: integer
            - type: 'null'
        room_count:
          anyOf:
            - type: integer
            - type: 'null'
        interior:
          anyOf:
            - type: string
            - type: 'null'
        is_highlighted:
          anyOf:
            - type: boolean
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        agent:
          anyOf:
            - $ref: '#/components/schemas/ParariusSearchAgent'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ParariusMode:
      type: string
      enum:
        - for_rent
        - for_sale
    ParariusDwellingType:
      type: string
      enum:
        - apartment
        - house
        - studio
        - room
    ParariusInterior:
      type: string
      enum:
        - shell
        - upholstered
        - furnished
    ParariusConstructionType:
      type: string
      enum:
        - existing
        - newly_built
    ParariusFacility:
      type: string
      enum:
        - air_conditioning
        - balcony
        - bath
        - elevator
        - fireplace
        - garage
        - garden
        - parking
        - roof_terrace
        - toilet
        - shower
        - storage_room
        - suitable_to_share
        - swimming_pool
    ParariusSituation:
      type: string
      enum:
        - in_residential_area
        - at_calm_road
        - near_public_transport
        - in_center
        - unobstructed_view
        - by_water
        - at_navigable_waterway
        - near_school
        - by_park
        - near_shopping_center
        - open_position
        - sheltered_position
        - at_busy_road
        - in_wooded_area
        - beside_forest
        - at_business_park
        - outside_built-up_area
        - peripheral
        - near_airport
        - near_sea
    ParariusAvailableFrom:
      type: string
      enum:
        - as_soon_as_possible
        - within_1_month
        - within_2_months
        - within_3_months
        - later
    ParariusRentalPeriod:
      type: string
      enum:
        - indefinite
        - temporary
    ParariusSearchAgent:
      properties:
        '@type':
          type: string
          default: ParariusSearchAgent
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        url:
          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

````