Skip to main content
POST
/
api
/
cian
/
offers
/cian/offers
curl --request POST \
  --url https://api.anysite.io/api/cian/offers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "offer": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "@cian_offer",
    "url": "<string>",
    "title": "<string>",
    "deal_type": "<string>",
    "offer_type": "<string>",
    "category": "<string>",
    "status": "<string>",
    "flat_type": "<string>",
    "is_apartments": true,
    "price": 123,
    "price_rur": 123,
    "price_usd": 123,
    "price_eur": 123,
    "price_per_meter": 123,
    "currency": "<string>",
    "sale_type": "<string>",
    "rooms_count": 123,
    "total_area": 123,
    "living_area": 123,
    "kitchen_area": 123,
    "floor_number": 123,
    "combined_wcs_count": 123,
    "windows_view_type": "<string>",
    "decoration": "<string>",
    "build_year": 123,
    "material_type": "<string>",
    "floors_count": 123,
    "ceiling_height": 123,
    "passenger_lifts_count": 123,
    "cargo_lifts_count": 123,
    "parking_type": "<string>",
    "deadline_year": 123,
    "deadline_quarter": "<string>",
    "address": "<string>",
    "latitude": 123,
    "longitude": 123,
    "undergrounds": [],
    "districts": [],
    "description": "<string>",
    "image": "<string>",
    "images": [],
    "published_at": 123,
    "created_at": "<string>",
    "edited_at": "<string>",
    "newbuilding": {
      "name": "<string>",
      "@type": "@cian_newbuilding_ref",
      "id": 123,
      "url": "<string>",
      "deadline_year": 123,
      "deadline_quarter": "<string>",
      "is_finished": true
    },
    "seller": {
      "@type": "@cian_seller",
      "id": 123,
      "name": "<string>",
      "type": "<string>",
      "account_type": "<string>",
      "company_name": "<string>",
      "is_agent": true,
      "is_builder": true,
      "is_developer": true,
      "offers_count": 123,
      "image": "<string>"
    },
    "view_count": 123,
    "price_history": [],
    "features": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
offer
string
required

CIAN offer ID or an offer URL containing it

Minimum string length: 1
Examples:

"317927888"

"https://www.cian.ru/sale/flat/317927888/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:@cian_offer
url
string | null
title
string | null
deal_type
string | null
offer_type
string | null
category
string | null
status
string | null
flat_type
string | null
is_apartments
boolean | null
price
integer | null
price_rur
integer | null
price_usd
integer | null
price_eur
integer | null
price_per_meter
integer | null
currency
string | null
sale_type
string | null
rooms_count
integer | null
total_area
number | null
living_area
number | null
kitchen_area
number | null
floor_number
integer | null
combined_wcs_count
integer | null
windows_view_type
string | null
decoration
string | null
build_year
integer | null
material_type
string | null
floors_count
integer | null
ceiling_height
number | null
passenger_lifts_count
integer | null
cargo_lifts_count
integer | null
parking_type
string | null
deadline_year
integer | null
deadline_quarter
string | null
address
string | null
latitude
number | null
longitude
number | null
undergrounds
CianUnderground · object[]
districts
CianDistrict · object[]
description
string | null
image
string | null
images
string[]
published_at
integer | null
created_at
string | null
edited_at
string | null
newbuilding
CianNewbuildingRef · object
seller
CianSeller · object
view_count
integer | null
price_history
CianPriceChange · object[]
features
CianFeature · object[]