# Krisha — 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 and browse real estate listings across Krisha.kz to find properties for sale, rent, or new developments, then access detailed information and contact details for each listing. Get comprehensive property data including prices, descriptions, and seller information to make informed decisions about properties in Kazakhstan.

**Category:** Real Estate | **Website:** [krisha.kz/](https://krisha.kz/) | **Docs:** [parse.bot/marketplace/2e3c30e1-5771-45bf-bac6-daf768dcecb5/krisha-kz-api](https://parse.bot/marketplace/2e3c30e1-5771-45bf-bac6-daf768dcecb5/krisha-kz-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-krisha-kz-api-2e3c30e1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_contact

Get available contact information for a listing on krisha.kz. Returns the owner/agent name and user type. Full phone number retrieval requires solving a reCAPTCHA challenge via the phones_url path, which is not automated by this endpoint.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | Listing ID obtained from search_listings results (numeric string, e.g., '670279234'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-krisha-kz-api-2e3c30e1/get_listing_contact \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_id":"<string>"}'
```

### get_listing_detail

Get full details of a single property listing from krisha.kz. Returns flattened property data including price, title, address, area, rooms, description, photos, map coordinates, and seller information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | Listing ID obtained from search_listings results (numeric string, e.g., '670279234'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-krisha-kz-api-2e3c30e1/get_listing_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_id":"<string>"}'
```

### search_listings

Search for real estate listings on krisha.kz with filters for deal type, property type, city, rooms, and price range. Returns paginated results with listing summaries including id, price, title, and description snippet. Pagination is page-based with ~20 listings per page. The total_count field reports the full result-set size as a formatted string.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City slug to filter by (e.g., 'almaty', 'astana'). Omitting returns listings from all cities. |
| `deal_type` | string | No | Type of deal. |
| `page` | integer | No | Page number for pagination (1-based). |
| `price_from` | integer | No | Minimum price filter in tenge. |
| `price_to` | integer | No | Maximum price filter in tenge. |
| `property_type` | string | No | Property type to search. |
| `rooms` | string | No | Number of rooms to filter by, comma-separated for multiple values (e.g., '2' or '2,3'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-krisha-kz-api-2e3c30e1/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","deal_type":"<string>","page":"<integer>","price_from":"<integer>","price_to":"<integer>","property_type":"<string>","rooms":"<string>"}'
```
