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

# /domclick/offers/search

> Search Domclick (Sber) real-estate offers within a region. Returns offer cards: id, url, deal/offer type, price, price per m², area, rooms, floor, building floors and build year, address with coordinates and nearby metro, photos, the new-building complex, developer and the seller. Filter by deal type, category, property type, room layout, price/area/room-area/land-area/floor/building-floor ranges, kitchen area, ceiling height, renovation, wall material, building class, build-year range, apartments, balcony, bathroom type, lifts, window view, sale type, seller (owner/developer/agents), Rosreestr-verified, exclude-auction, new-build only, publication window, video, photos, online showing, metro walking/driving time, MKAD distance, rental terms (no commission/deposit, children, pets, amenities) and description keywords, with configurable sort order.

**Price:** 5 credits per 30 results

**⚠️ Common errors:** 412: Region not found or no offers matched



## OpenAPI

````yaml /openapi/real-estate.json post /api/domclick/offers/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/domclick/offers/search:
    post:
      tags:
        - /domclick
      summary: /domclick/offers/search
      description: >-
        Search Domclick (Sber) real-estate offers within a region. Returns offer
        cards: id, url, deal/offer type, price, price per m², area, rooms,
        floor, building floors and build year, address with coordinates and
        nearby metro, photos, the new-building complex, developer and the
        seller. Filter by deal type, category, property type, room layout,
        price/area/room-area/land-area/floor/building-floor ranges, kitchen
        area, ceiling height, renovation, wall material, building class,
        build-year range, apartments, balcony, bathroom type, lifts, window
        view, sale type, seller (owner/developer/agents), Rosreestr-verified,
        exclude-auction, new-build only, publication window, video, photos,
        online showing, metro walking/driving time, MKAD distance, rental terms
        (no commission/deposit, children, pets, amenities) and description
        keywords, with configurable sort order.


        **Price:** 5 credits per 30 results


        **⚠️ Common errors:** 412: Region not found or no offers matched
      operationId: __api_domclick_offers_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DomclickOffersSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DomclickOffer'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DomclickOffersSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        region:
          type: string
        deal_type:
          $ref: '#/components/schemas/DomclickDealType'
          default: sale
        category:
          $ref: '#/components/schemas/DomclickCategory'
          default: living
        offer_type:
          anyOf:
            - items:
                $ref: '#/components/schemas/DomclickOfferType'
              type: array
            - type: 'null'
        count:
          type: integer
          minimum: 1
        rooms:
          anyOf:
            - items:
                $ref: '#/components/schemas/DomclickRoom'
              type: array
            - type: 'null'
        min_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_area:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        max_area:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        min_room_area:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        max_room_area:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        min_land_area:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        max_land_area:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        min_floor:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_floor:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_floors:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_floors:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        not_first_floor:
          anyOf:
            - type: boolean
            - type: 'null'
        not_last_floor:
          anyOf:
            - type: boolean
            - type: 'null'
        last_floor:
          anyOf:
            - type: boolean
            - type: 'null'
        min_kitchen_area:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        min_ceiling_height:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        renovation:
          anyOf:
            - items:
                $ref: '#/components/schemas/DomclickRenovation'
              type: array
            - type: 'null'
        wall_type:
          anyOf:
            - items:
                $ref: '#/components/schemas/DomclickWallType'
              type: array
            - type: 'null'
        building_class:
          anyOf:
            - items:
                $ref: '#/components/schemas/DomclickBuildingClass'
              type: array
            - type: 'null'
        min_build_year:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_build_year:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        is_apartment:
          anyOf:
            - type: boolean
            - type: 'null'
        with_balcony:
          anyOf:
            - type: boolean
            - type: 'null'
        with_separated_bathroom:
          anyOf:
            - type: boolean
            - type: 'null'
        with_connected_bathroom:
          anyOf:
            - type: boolean
            - type: 'null'
        with_lifts:
          anyOf:
            - type: boolean
            - type: 'null'
        with_freight_lifts:
          anyOf:
            - type: boolean
            - type: 'null'
        window_view:
          anyOf:
            - $ref: '#/components/schemas/DomclickWindowView'
            - type: 'null'
        sell_type:
          anyOf:
            - items:
                $ref: '#/components/schemas/DomclickSellType'
              type: array
            - type: 'null'
        from_owner:
          anyOf:
            - type: boolean
            - type: 'null'
        from_developer:
          anyOf:
            - type: boolean
            - type: 'null'
        from_agents:
          anyOf:
            - type: boolean
            - type: 'null'
        rosreestr_approved:
          anyOf:
            - type: boolean
            - type: 'null'
        exclude_auction:
          anyOf:
            - type: boolean
            - type: 'null'
        only_newbuilding:
          anyOf:
            - type: boolean
            - type: 'null'
        published_filter:
          anyOf:
            - $ref: '#/components/schemas/DomclickPublishedFilter'
            - type: 'null'
        with_video:
          anyOf:
            - type: boolean
            - type: 'null'
        with_photo:
          anyOf:
            - type: boolean
            - type: 'null'
        online_show:
          anyOf:
            - type: boolean
            - type: 'null'
        max_metro_time_on_foot:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_metro_time_by_car:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_mkad_distance:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_mkad_distance:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        no_commission:
          anyOf:
            - type: boolean
            - type: 'null'
        no_deposit:
          anyOf:
            - type: boolean
            - type: 'null'
        with_children:
          anyOf:
            - type: boolean
            - type: 'null'
        with_animals:
          anyOf:
            - type: boolean
            - type: 'null'
        amenities:
          anyOf:
            - items:
                $ref: '#/components/schemas/DomclickAmenity'
              type: array
            - type: 'null'
        include_keywords:
          anyOf:
            - type: string
            - type: 'null'
        exclude_keywords:
          anyOf:
            - type: string
            - type: 'null'
        sort:
          $ref: '#/components/schemas/DomclickSort'
          default: qi
        sort_dir:
          $ref: '#/components/schemas/DomclickSortDir'
          default: desc
      type: object
      required:
        - region
        - count
    DomclickOffer:
      properties:
        '@type':
          type: string
          default: DomclickOffer
        id:
          type: integer
        url:
          anyOf:
            - type: string
            - type: 'null'
        deal_type:
          anyOf:
            - type: string
            - type: 'null'
        offer_type:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        square_price:
          anyOf:
            - type: integer
            - type: 'null'
        monthly_payment:
          anyOf:
            - type: integer
            - type: 'null'
        has_discount:
          anyOf:
            - type: boolean
            - type: 'null'
        discount_value:
          anyOf:
            - type: number
            - type: 'null'
        area:
          anyOf:
            - type: number
            - type: 'null'
        rooms:
          anyOf:
            - type: integer
            - type: 'null'
        floor:
          anyOf:
            - type: integer
            - type: 'null'
        floors:
          anyOf:
            - type: integer
            - type: 'null'
        is_apartment:
          anyOf:
            - type: boolean
            - type: 'null'
        build_year:
          anyOf:
            - type: integer
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        subways:
          items:
            $ref: '#/components/schemas/DomclickSubway'
          type: array
          default: []
        complex:
          anyOf:
            - $ref: '#/components/schemas/DomclickOfferComplex'
            - type: 'null'
        developer_name:
          anyOf:
            - type: string
            - type: 'null'
        developer_image:
          anyOf:
            - type: string
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/DomclickOfferSeller'
            - type: 'null'
        is_owner:
          anyOf:
            - type: boolean
            - type: 'null'
        is_rosreestr_approved:
          anyOf:
            - type: boolean
            - type: 'null'
        has_video:
          anyOf:
            - type: boolean
            - type: 'null'
        duplicates_offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        published_at:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DomclickDealType:
      type: string
      enum:
        - sale
        - rent
    DomclickCategory:
      type: string
      enum:
        - living
        - living_house
        - commercial
        - garage
    DomclickOfferType:
      type: string
      enum:
        - flat
        - layout
        - room
        - complex
        - house
        - house_part
        - townhouse
        - land
    DomclickRoom:
      type: string
      enum:
        - st
        - '1'
        - '2'
        - '3'
        - '4'
        - 5+
    DomclickRenovation:
      type: string
      enum:
        - without_repair
        - standard
        - well_done
        - design
    DomclickWallType:
      type: string
      enum:
        - monolith
        - brick_monolith
        - brick
        - panel
        - block
    DomclickBuildingClass:
      type: string
      enum:
        - economy
        - comfort
        - business
        - elite
    DomclickWindowView:
      type: string
      enum:
        - garden
        - park
        - water
        - forest
        - street
    DomclickSellType:
      type: string
      enum:
        - free_sale
        - alternative
    DomclickPublishedFilter:
      type: string
      enum:
        - hour
        - today
        - 24h
        - 10d
        - 30d
    DomclickAmenity:
      type: string
      enum:
        - internet
        - living_furniture
        - kitchen_furniture
        - refrigerator
        - tv
        - dish_washer
        - conditioner
    DomclickSort:
      type: string
      enum:
        - qi
        - price
        - area
        - published
    DomclickSortDir:
      type: string
      enum:
        - asc
        - desc
    DomclickSubway:
      properties:
        '@type':
          type: string
          default: DomclickSubway
        name:
          type: string
        time:
          anyOf:
            - type: integer
            - type: 'null'
        line_colors:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - name
    DomclickOfferComplex:
      properties:
        '@type':
          type: string
          default: DomclickOfferComplex
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        building_id:
          anyOf:
            - type: integer
            - type: 'null'
        end_build_year:
          anyOf:
            - type: integer
            - type: 'null'
        end_build_quarter:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    DomclickOfferSeller:
      properties:
        '@type':
          type: string
          default: DomclickOfferSeller
        name:
          anyOf:
            - type: string
            - type: 'null'
        is_agent:
          anyOf:
            - type: boolean
            - type: 'null'
        is_agency:
          anyOf:
            - type: boolean
            - type: 'null'
        is_owner:
          anyOf:
            - type: boolean
            - type: 'null'
        is_sbol_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        agent_cas_id:
          anyOf:
            - type: integer
            - type: 'null'
        agent_name:
          anyOf:
            - type: string
            - type: 'null'
        agent_image:
          anyOf:
            - type: string
            - type: 'null'
        agent_experience:
          anyOf:
            - type: string
            - type: 'null'
        company_id:
          anyOf:
            - type: integer
            - type: 'null'
        company_name:
          anyOf:
            - type: string
            - type: 'null'
        company_logo:
          anyOf:
            - type: string
            - type: 'null'
        company_experience:
          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

````