# Market 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.

> Access data from market.yandex.uz.

**Category:** E-commerce | **Website:** [market.yandex.uz/](https://market.yandex.uz/) | **Docs:** [parse.bot/marketplace/51cf1324-03bb-4044-ba26-691ed3ab7351/market-yandex-uz-api](https://parse.bot/marketplace/51cf1324-03bb-4044-ba26-691ed3ab7351/market-yandex-uz-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-market-yandex-uz-api-51cf1324/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_search_suggestions

Get autocomplete/search suggestions for a partial query string. Returns up to 10 suggested search terms based on the input text. Useful for implementing search-as-you-type functionality.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Partial search text to get suggestions for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-market-yandex-uz-api-51cf1324/get_search_suggestions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### search_products

Search for products on Yandex Market Uzbekistan. Returns paginated product listings with price, discount, delivery, and vendor information. Results are auto-iterated across pages. Each item includes a ware_id (unique offer identifier), product_id, pricing in UZS, discount details, and estimated delivery dates.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `query` | string | Yes | Search query text (product name, brand, category, etc.). |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-market-yandex-uz-api-51cf1324/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>","sort":"<string>"}'
```
