
Cian.ru API
Agents
/agent/offersCian.ru /agent/offers API
Our /agent/offers endpoint delivers comprehensive Cian.ru data for developers and businesses at every stage of growth. The documentation is thorough, the response format is predictable, and the onboarding takes minutes instead of weeks. You won't need to reverse-engineer website structures, rotate IP addresses, or deal with CAPTCHAs — RealtyAPI abstracts all of that complexity into a single, clean API call. Thousands of developers already use this endpoint to power property search tools, market dashboards, investment platforms, and lead generation systems across the real estate industry.
import requests
url = "https://cian.realtyapi.io/agent/offers"
headers = {
"x-realtyapi-key": "YOUR_API_KEY"
}
params = {
"id": "116011436"
}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data)What You Can Do With
the /agent/offers Endpoint.
Here's what this endpoint provides and how you can use the data it returns.
Endpoint Parameters
3 params| Parameter | Type | Required |
|---|---|---|
id | STRING | Required |
page | NUMBER | Optional |
resultCount | NUMBER | Optional |
Required Parameters
This endpoint requires id to fetch data. Pass these as query parameters in your request.
JSON Response
Receive structured JSON containing /agent/offers data from Cian.ru. Parse it directly into your application models.
Real-Time Results
Every request fetches live Cian.ru data. No stale caches — you always get the most current information available.
Error Handling
Clear HTTP status codes and error messages help you handle edge cases gracefully. See our documentation for the full error reference.