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

# /cian/offers

> Get full CIAN real-estate offer details by offer ID (or offer URL): deal type, offer type, price (with per-square-meter and multi-currency values), total/living/kitchen area, rooms, floor, decoration, building (material, year, floors, ceiling height, lifts, parking, completion deadline), address with coordinates and nearby metro/districts, description, photos, the new-building complex, the seller/agent, view count, price history and the about-flat/about-building feature list.

**Price:** 20 credits

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



## OpenAPI

````yaml /openapi/real-estate.json post /api/cian/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/cian/offers:
    post:
      tags:
        - /cian
      summary: /cian/offers
      description: >-
        Get full CIAN real-estate offer details by offer ID (or offer URL): deal
        type, offer type, price (with per-square-meter and multi-currency
        values), total/living/kitchen area, rooms, floor, decoration, building
        (material, year, floors, ceiling height, lifts, parking, completion
        deadline), address with coordinates and nearby metro/districts,
        description, photos, the new-building complex, the seller/agent, view
        count, price history and the about-flat/about-building feature list.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Offer not found (well-formed but nonexistent
        or removed listing)
      operationId: __api_cian_offers_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CianOffersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CianOffer'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CianOffersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        offer:
          type: string
          minLength: 1
      type: object
      required:
        - offer
    CianOffer:
      properties:
        '@type':
          type: string
          default: CianOffer
        id:
          type: integer
        url:
          anyOf:
            - type: string
            - type: 'null'
        deal_type:
          anyOf:
            - type: string
            - type: 'null'
        offer_type:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        flat_type:
          anyOf:
            - type: string
            - type: 'null'
        is_apartments:
          anyOf:
            - type: boolean
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        price_rur:
          anyOf:
            - type: integer
            - type: 'null'
        price_usd:
          anyOf:
            - type: integer
            - type: 'null'
        price_eur:
          anyOf:
            - type: integer
            - type: 'null'
        price_per_meter:
          anyOf:
            - type: integer
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        sale_type:
          anyOf:
            - type: string
            - type: 'null'
        rooms_count:
          anyOf:
            - type: integer
            - type: 'null'
        total_area:
          anyOf:
            - type: number
            - type: 'null'
        living_area:
          anyOf:
            - type: number
            - type: 'null'
        kitchen_area:
          anyOf:
            - type: number
            - type: 'null'
        floor_number:
          anyOf:
            - type: integer
            - type: 'null'
        combined_wcs_count:
          anyOf:
            - type: integer
            - type: 'null'
        windows_view_type:
          anyOf:
            - type: string
            - type: 'null'
        decoration:
          anyOf:
            - type: string
            - type: 'null'
        build_year:
          anyOf:
            - type: integer
            - type: 'null'
        material_type:
          anyOf:
            - type: string
            - type: 'null'
        floors_count:
          anyOf:
            - type: integer
            - type: 'null'
        ceiling_height:
          anyOf:
            - type: number
            - type: 'null'
        passenger_lifts_count:
          anyOf:
            - type: integer
            - type: 'null'
        cargo_lifts_count:
          anyOf:
            - type: integer
            - type: 'null'
        parking_type:
          anyOf:
            - type: string
            - type: 'null'
        deadline_year:
          anyOf:
            - type: integer
            - type: 'null'
        deadline_quarter:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        undergrounds:
          items:
            $ref: '#/components/schemas/CianUnderground'
          type: array
          default: []
        districts:
          items:
            $ref: '#/components/schemas/CianDistrict'
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        edited_at:
          anyOf:
            - type: string
            - type: 'null'
        newbuilding:
          anyOf:
            - $ref: '#/components/schemas/CianNewbuildingRef'
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/CianSeller'
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        price_history:
          items:
            $ref: '#/components/schemas/CianPriceChange'
          type: array
          default: []
        features:
          items:
            $ref: '#/components/schemas/CianFeature'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CianUnderground:
      properties:
        '@type':
          type: string
          default: CianUnderground
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        line_color:
          anyOf:
            - type: string
            - type: 'null'
        travel_type:
          anyOf:
            - type: string
            - type: 'null'
        travel_time:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    CianDistrict:
      properties:
        '@type':
          type: string
          default: CianDistrict
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    CianNewbuildingRef:
      properties:
        '@type':
          type: string
          default: CianNewbuildingRef
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        deadline_year:
          anyOf:
            - type: integer
            - type: 'null'
        deadline_quarter:
          anyOf:
            - type: string
            - type: 'null'
        is_finished:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - name
    CianSeller:
      properties:
        '@type':
          type: string
          default: CianSeller
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        account_type:
          anyOf:
            - type: string
            - type: 'null'
        company_name:
          anyOf:
            - type: string
            - type: 'null'
        is_agent:
          anyOf:
            - type: boolean
            - type: 'null'
        is_builder:
          anyOf:
            - type: boolean
            - type: 'null'
        is_developer:
          anyOf:
            - type: boolean
            - type: 'null'
        offers_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    CianPriceChange:
      properties:
        '@type':
          type: string
          default: CianPriceChange
        date:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    CianFeature:
      properties:
        '@type':
          type: string
          default: CianFeature
        group:
          anyOf:
            - type: string
            - type: 'null'
        label:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - label
    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

````