# 2GIS Russia — 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 across Russian cities and retrieve detailed company profiles including contact information, locations, and services from the 2GIS business directory. Find exactly what you need by looking up specific companies or browsing by category to discover new businesses in any Russian city.

**Category:** Business Directories | **Website:** [2gis.ru/](https://2gis.ru/) | **Docs:** [parse.bot/marketplace/78943666-e11e-473a-a66a-5b9a88969d8c/2gis-ru-api](https://parse.bot/marketplace/78943666-e11e-473a-a66a-5b9a88969d8c/2gis-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-2gis-ru-api-78943666/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_profile

Get full company details by its internal 2GIS ID. Returns name, address, phones, email, website, working hours, description, category, and rating.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_id` | string | Yes | Internal 2GIS company ID (from search_companies results). |

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

### search_companies

Search for companies by name or category in a given city. Returns paginated results with basic company info including name, address, contact details, category, and rating. Results are ordered by relevance within the specified city.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | Yes | City name in Russian (e.g. 'Новосибирск', 'Москва'). |
| `page` | integer | No | Page number for paginated results. |
| `query` | string | Yes | Search query — company name, category, or keyword (e.g. 'кофейня', 'аптека'). |

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