# Cian — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for apartments for sale on cian.ru by district, price range, and number of rooms, then sort results to find your ideal property. Filter listings to narrow down options and quickly compare available real estate across Moscow's neighborhoods.

**Category:** Real Estate | **Website:** [www.cian.ru/kupit-kvartiru/](https://www.cian.ru/kupit-kvartiru/) | **Docs:** [parse.bot/marketplace/51c24102-1030-4b37-be69-bca96623ce82/cian-ru-api](https://parse.bot/marketplace/51c24102-1030-4b37-be69-bca96623ce82/cian-ru-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-cian-ru-api-51c24102/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_apartments

Search apartments for sale in Moscow. Returns paginated listings with price, area, rooms, floor, address, metro station, coordinates, and building info. Results are auto-iterated across pages (28 listings per page). The district filter uses cian.ru internal IDs (e.g. 11 = ЗАО/Western, 13 = ЦАО/Central).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Property category filter. When omitted, returns all categories. |
| `district` | string | No | District (округ) ID on cian.ru. Known IDs: 11 = ЗАО (Western), 13 = ЦАО (Central), 12 = САО (Northern), 325 = НАО (Новомосковский). Omitting searches all Moscow. |
| `max_price` | string | No | Maximum price in rubles (e.g. 120000000 for 120 million). |
| `min_price` | string | No | Minimum price in rubles (e.g. 30000000 for 30 million). |
| `page` | integer | No | Page number for pagination (1-based). |
| `rooms` | string | No | Comma-separated room counts to filter by (e.g. '1,2,3'). Studio = 9. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cian-ru-api-51c24102/search_apartments \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","district":"<string>","max_price":"<string>","min_price":"<string>","page":"<integer>","rooms":"<string>","sort":"<string>"}'
```
