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

> Get full Yandex Realty offer (listing) details by offer id or offer URL: deal type, property category, price and price per square meter, rooms, total/living/kitchen area, room areas, floor, ceiling height, renovation, bathroom, balcony, window view, building year/type/series, address, coordinates, nearby metro stations, photos, tags, the seller (agency/agent) and the price history.

**Price:** 20 credits

**⚠️ Common errors:** 412: Offer not found, expired or removed (well-formed but nonexistent/withdrawn offer id)



## OpenAPI

````yaml /openapi/real-estate.json post /api/yandexrealty/offers
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/offers:
    post:
      tags:
        - /yandexrealty
      summary: /yandexrealty/offers
      description: >-
        Get full Yandex Realty offer (listing) details by offer id or offer URL:
        deal type, property category, price and price per square meter, rooms,
        total/living/kitchen area, room areas, floor, ceiling height,
        renovation, bathroom, balcony, window view, building year/type/series,
        address, coordinates, nearby metro stations, photos, tags, the seller
        (agency/agent) and the price history.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Offer not found, expired or removed
        (well-formed but nonexistent/withdrawn offer id)
      operationId: __api_yandexrealty_offers_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YandexrealtyOffersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YandexrealtyOffer'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YandexrealtyOffersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        offer:
          type: string
          minLength: 1
      type: object
      required:
        - offer
    YandexrealtyOffer:
      properties:
        '@type':
          type: string
          default: YandexrealtyOffer
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        offer_type:
          anyOf:
            - type: string
            - type: 'null'
        offer_category:
          anyOf:
            - type: string
            - type: 'null'
        flat_type:
          anyOf:
            - type: string
            - type: 'null'
        deal_status:
          anyOf:
            - type: string
            - type: 'null'
        trust:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        price_per_meter:
          anyOf:
            - type: integer
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        price_trend:
          anyOf:
            - type: string
            - type: 'null'
        rooms_total:
          anyOf:
            - type: integer
            - type: 'null'
        area:
          anyOf:
            - type: number
            - type: 'null'
        living_space:
          anyOf:
            - type: number
            - type: 'null'
        kitchen_space:
          anyOf:
            - type: number
            - type: 'null'
        room_spaces:
          items:
            type: number
          type: array
          default: []
        ceiling_height:
          anyOf:
            - type: number
            - type: 'null'
        floor:
          anyOf:
            - type: integer
            - type: 'null'
        floors_total:
          anyOf:
            - type: integer
            - type: 'null'
        renovation:
          anyOf:
            - type: string
            - type: 'null'
        bathroom_unit:
          anyOf:
            - type: string
            - type: 'null'
        balcony_type:
          anyOf:
            - type: string
            - type: 'null'
        window_view:
          anyOf:
            - type: string
            - type: 'null'
        is_apartments:
          anyOf:
            - type: boolean
            - type: 'null'
        is_open_plan:
          anyOf:
            - type: boolean
            - type: 'null'
        is_new_building:
          anyOf:
            - type: boolean
            - type: 'null'
        is_exclusive:
          anyOf:
            - type: boolean
            - type: 'null'
        built_year:
          anyOf:
            - type: integer
            - type: 'null'
        building_type:
          anyOf:
            - type: string
            - type: 'null'
        building_series:
          anyOf:
            - type: string
            - type: 'null'
        building_id:
          anyOf:
            - type: string
            - type: 'null'
        flats_count:
          anyOf:
            - type: integer
            - type: 'null'
        porches_count:
          anyOf:
            - type: integer
            - type: 'null'
        parking_type:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        metro:
          anyOf:
            - $ref: '#/components/schemas/YandexrealtyMetro'
            - type: 'null'
        metro_list:
          items:
            $ref: '#/components/schemas/YandexrealtyMetro'
          type: array
          default: []
        rgid:
          anyOf:
            - type: integer
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        has_lift:
          anyOf:
            - type: boolean
            - type: 'null'
        has_rubbish_chute:
          anyOf:
            - type: boolean
            - type: 'null'
        is_guarded:
          anyOf:
            - type: boolean
            - type: 'null'
        has_security:
          anyOf:
            - type: boolean
            - type: 'null'
        has_internet:
          anyOf:
            - type: boolean
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
        tags:
          items:
            type: string
          type: array
          default: []
        author:
          anyOf:
            - $ref: '#/components/schemas/YandexrealtyOfferAuthor'
            - type: 'null'
        price_history:
          items:
            $ref: '#/components/schemas/YandexrealtyPricePoint'
          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
    YandexrealtyOfferAuthor:
      properties:
        '@type':
          type: string
          default: YandexrealtyOfferAuthor
        id:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        organization:
          anyOf:
            - type: string
            - type: 'null'
        agent_name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    YandexrealtyPricePoint:
      properties:
        '@type':
          type: string
          default: YandexrealtyPricePoint
        date:
          anyOf:
            - type: string
            - type: 'null'
        value:
          anyOf:
            - type: integer
            - 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

````