# Olx (Ukraine) — 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 product listings on OLX.ua. Retrieve listings with pricing, descriptions, seller details, location information, and images across any category. Compare prices and explore current marketplace inventory with flexible keyword and category filters.

**Category:** Marketplaces | **Website:** [olx.ua/](https://olx.ua/) | **Docs:** [parse.bot/marketplace/027ee47f-a1db-4a9e-ba1e-f6032e5b0926/olx-ua-api](https://parse.bot/marketplace/027ee47f-a1db-4a9e-ba1e-f6032e5b0926/olx-ua-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-olx-ua-api-027ee47f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_second_hand

Browse OLX.ua listings within a single category without a text query. Defaults to Electronics (category 37). Paginates via offset. Returns the same Listing shape as the search endpoint.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | integer | No | Category ID |
| `offset` | integer | No | Pagination offset (number of items to skip) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-olx-ua-api-027ee47f/get_second_hand \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<integer>","offset":"<integer>"}'
```

### search

Full-text search over OLX.ua listings. query matches title and description; category_id narrows to one category. Paginates via offset. Each Listing includes price, location, seller info, contact availability, and images. Returns up to limit items per page with a total count capped at 1000 by the upstream API.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | integer | No | Category ID to filter results |
| `limit` | integer | No | Maximum number of results per page |
| `offset` | integer | No | Pagination offset (number of items to skip) |
| `query` | string | No | Search keyword or phrase |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-olx-ua-api-027ee47f/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<integer>","limit":"<integer>","offset":"<integer>","query":"<string>"}'
```
