# Avito — 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.

> Browse and retrieve classified ad listings from Avito.ru, Russia's largest classifieds marketplace. Search by category, filter by price, and retrieve full item details including seller information.

**Category:** Marketplaces | **Website:** [avito.ru/](https://avito.ru/) | **Docs:** [parse.bot/marketplace/e2587acc-0e78-48b6-a35a-8f581d240d35/avito-ru-api](https://parse.bot/marketplace/e2587acc-0e78-48b6-a35a-8f581d240d35/avito-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-avito-ru-api-e2587acc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_item_details

Get full details for a specific item listing including description, parameters, seller info, and images. Requires the full URL or path of the item listing page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL or path of the item listing page (e.g., 'https://www.avito.ru/moskva/telefony/<item-slug>' or '/moskva/telefony/<item-slug>') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-avito-ru-api-e2587acc/get_item_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_phone

Retrieve the seller's phone number for a specific item. Requires the item ID and searchHash from the item detail page. Note: This endpoint is heavily protected and may be blocked.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `item_id` | string | Yes | Item ID from the listing |
| `search_hash` | string | No | searchHash extracted from the item detail page |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-avito-ru-api-e2587acc/get_phone \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"item_id":"<string>","search_hash":"<string>"}'
```

### search_items

Browse classified ads on Avito.ru by category with optional filters for price range and client-side text filtering. Returns a list of items and average price statistics. Only city-level locations are supported.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Category slug for browsing |
| `location` | string | No | City location slug |
| `page` | integer | No | Page number for pagination |
| `price_max` | integer | No | Maximum price filter in RUB |
| `price_min` | integer | No | Minimum price filter in RUB |
| `query` | string | No | Optional text to filter results client-side by matching against item titles and descriptions. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-avito-ru-api-e2587acc/search_items \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","location":"<string>","page":"<integer>","price_max":"<integer>","price_min":"<integer>","query":"<string>"}'
```
