# Olx (m.olx.pl) — 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 listings from OLX.pl across a wide range of categories including vehicles, electronics, real estate, fashion, and more. Access detailed offer information, price comparisons, seller details, and the latest postings — with support for keyword search and category filtering.

**Category:** Marketplaces | **Website:** [m.olx.pl/](https://m.olx.pl/) | **Docs:** [parse.bot/marketplace/d13ae388-9301-4b99-ad16-bcfdf8b57688/m-olx-pl-api](https://parse.bot/marketplace/d13ae388-9301-4b99-ad16-bcfdf8b57688/m-olx-pl-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-m-olx-pl-api-d13ae388/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_books

Search for book listings within the Books category (ID 751) on OLX.pl. Returns paginated results filtered to books only. Accepts a subject keyword to narrow results within the books category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results to return per page. |
| `offset` | integer | No | Pagination offset. |
| `subject` | string | No | Subject or keyword to search within book listings (e.g., 'matematyka', 'historia', 'fizyka'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-m-olx-pl-api-d13ae388/search_books \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","subject":"<string>"}'
```

### search_listings

Search for product listings on OLX.pl with optional query and category filtering. Returns paginated results sorted by relevance. Each listing includes title, description, price, location, creation time, category, and photo URLs. The total count is capped at 1000 by the upstream API regardless of the actual number of matches.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | integer | No | Category ID to filter results (e.g., 751 for Books, 99 for Computers). |
| `limit` | integer | No | Number of results to return per page. |
| `offset` | integer | No | Pagination offset. |
| `query` | string | No | Search keyword to filter listings. |

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