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

# /yandexrealty/sites

> Get full Yandex Realty new building (residential complex) details by site id or new building URL: name, developer, price range and price per square meter, area range, building class, floors, total apartments, construction state and delivery dates, interior finish, parking, room offers by room type (price, area, offer count), transaction terms (mortgage/installment), address, coordinates, review count and rating, description and photos.

**Price:** 20 credits

**⚠️ Common errors:** 412: New building not found (well-formed but nonexistent site id)



## OpenAPI

````yaml /openapi/real-estate.json post /api/yandexrealty/sites
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/yandexrealty/sites:
    post:
      tags:
        - /yandexrealty
      summary: /yandexrealty/sites
      description: >-
        Get full Yandex Realty new building (residential complex) details by
        site id or new building URL: name, developer, price range and price per
        square meter, area range, building class, floors, total apartments,
        construction state and delivery dates, interior finish, parking, room
        offers by room type (price, area, offer count), transaction terms
        (mortgage/installment), address, coordinates, review count and rating,
        description and photos.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: New building not found (well-formed but
        nonexistent site id)
      operationId: __api_yandexrealty_sites_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YandexrealtySitesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YandexrealtySite'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YandexrealtySitesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        site:
          type: string
          minLength: 1
      type: object
      required:
        - site
    YandexrealtySite:
      properties:
        '@type':
          type: string
          default: YandexrealtySite
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        full_name:
          anyOf:
            - type: string
            - type: 'null'
        flat_status:
          anyOf:
            - type: string
            - type: 'null'
        construction_state:
          anyOf:
            - type: string
            - type: 'null'
        site_type:
          anyOf:
            - type: string
            - type: 'null'
        building_class:
          anyOf:
            - type: string
            - type: 'null'
        wall_type:
          anyOf:
            - type: string
            - type: 'null'
        is_apartment:
          anyOf:
            - type: boolean
            - type: 'null'
        total_floors:
          anyOf:
            - type: integer
            - type: 'null'
        min_total_floors:
          anyOf:
            - type: integer
            - type: 'null'
        total_apartments:
          anyOf:
            - type: integer
            - type: 'null'
        ceiling_height:
          anyOf:
            - type: integer
            - type: 'null'
        interior_finish:
          anyOf:
            - type: string
            - type: 'null'
        parking_type:
          anyOf:
            - type: string
            - type: 'null'
        price_from:
          anyOf:
            - type: integer
            - type: 'null'
        price_to:
          anyOf:
            - type: integer
            - type: 'null'
        price_per_meter_min:
          anyOf:
            - type: integer
            - type: 'null'
        price_per_meter_max:
          anyOf:
            - type: integer
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        area_min:
          anyOf:
            - type: number
            - type: 'null'
        area_max:
          anyOf:
            - type: number
            - type: 'null'
        total_offers:
          anyOf:
            - type: integer
            - type: 'null'
        resale_total_offers:
          anyOf:
            - type: integer
            - type: 'null'
        has_mortgage:
          anyOf:
            - type: boolean
            - type: 'null'
        has_installment:
          anyOf:
            - type: boolean
            - type: 'null'
        has_maternity_funds:
          anyOf:
            - type: boolean
            - type: 'null'
        is_fz214:
          anyOf:
            - type: boolean
            - type: 'null'
        agreement_type:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        rgid:
          anyOf:
            - type: integer
            - type: 'null'
        distance_from_ring_road:
          anyOf:
            - type: integer
            - type: 'null'
        metro:
          anyOf:
            - $ref: '#/components/schemas/YandexrealtyMetro'
            - type: 'null'
        metro_list:
          items:
            $ref: '#/components/schemas/YandexrealtyMetro'
          type: array
          default: []
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_rating:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        developer:
          anyOf:
            - $ref: '#/components/schemas/YandexrealtySiteDeveloper'
            - type: 'null'
        room_offers:
          items:
            $ref: '#/components/schemas/YandexrealtySiteRoomOffer'
          type: array
          default: []
        delivery_dates:
          items:
            $ref: '#/components/schemas/YandexrealtySiteDeliveryDate'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YandexrealtyMetro:
      properties:
        '@type':
          type: string
          default: YandexrealtyMetro
        name:
          type: string
        transport:
          anyOf:
            - type: string
            - type: 'null'
        time_to_metro:
          anyOf:
            - type: integer
            - type: 'null'
        line_color:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    YandexrealtySiteDeveloper:
      properties:
        '@type':
          type: string
          default: YandexrealtySiteDeveloper
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        legal_name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        born_at:
          anyOf:
            - type: string
            - type: 'null'
        finished_sites:
          anyOf:
            - type: integer
            - type: 'null'
        unfinished_sites:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    YandexrealtySiteRoomOffer:
      properties:
        '@type':
          type: string
          default: YandexrealtySiteRoomOffer
        room_type:
          type: string
        price_from:
          anyOf:
            - type: integer
            - type: 'null'
        price_to:
          anyOf:
            - type: integer
            - type: 'null'
        area_from:
          anyOf:
            - type: number
            - type: 'null'
        area_to:
          anyOf:
            - type: number
            - type: 'null'
        offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - room_type
    YandexrealtySiteDeliveryDate:
      properties:
        '@type':
          type: string
          default: YandexrealtySiteDeliveryDate
        year:
          anyOf:
            - type: integer
            - type: 'null'
        quarter:
          anyOf:
            - type: integer
            - type: 'null'
        phase_name:
          anyOf:
            - type: string
            - type: 'null'
        house_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_finished:
          anyOf:
            - type: boolean
            - 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

````