# Yandex — 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 businesses on Yandex Maps and instantly access their names, addresses, phone numbers, websites, social media links, hours of operation, and categories. Get detailed company information to find local services, verify business details, or build comprehensive business directories.

**Category:** Maps & Geospatial | **Website:** [yandex.ru/maps/213/moscow/?from=mapframe&ll=37.475926%2C55.740800&mode=usermaps&source=mapframe&um=constructor%3Ac59f7f1151ed4b2a24d0c75f16da9a8cfe8bf2b4142999a76e8e9f699a77ba28&utm_source=mapframe&z=13](https://yandex.ru/maps/213/moscow/?from=mapframe&ll=37.475926%2C55.740800&mode=usermaps&source=mapframe&um=constructor%3Ac59f7f1151ed4b2a24d0c75f16da9a8cfe8bf2b4142999a76e8e9f699a77ba28&utm_source=mapframe&z=13) | **Docs:** [parse.bot/marketplace/95b5ca1d-46d5-4173-acc7-4116ab213b16/yandex-ru-api](https://parse.bot/marketplace/95b5ca1d-46d5-4173-acc7-4116ab213b16/yandex-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-yandex-ru-api-95b5ca1d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Get detailed information about a specific company by its Yandex Maps organization ID. Returns full contact details, working hours, categories, coordinates, and social links. The company_id is obtained from search_companies results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_id` | string | Yes | Yandex Maps organization ID (numeric string from search_companies results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-yandex-ru-api-95b5ca1d/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_id":"<string>"}'
```

### search_companies

Search for companies/businesses on Yandex Maps by query term in a specific city. Returns a paginated list of companies with full contact details including phones, websites, social links, working hours, categories, and ratings. Each page returns up to 25 results. Pagination via page parameter; total_results indicates the full count available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City name in URL slug format (e.g. 'moscow', 'saint_petersburg'). |
| `page` | integer | No | Page number for pagination. Each page returns up to 25 results. |
| `query` | string | No | Search query in any language (e.g. 'кофе', 'restaurants', 'graphic design'). |
| `region_id` | string | No | Yandex region ID as a numeric string (213 for Moscow, 2 for Saint Petersburg). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-yandex-ru-api-95b5ca1d/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","page":"<integer>","query":"<string>","region_id":"<string>"}'
```
