# Olx (Bosnia & Herzegovina) — 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 on OLX.ba across all categories. Retrieve listing names, prices, categories, and URLs, or drill into individual listings for detailed attributes such as location, address, area, floor, condition, and seller information. Includes dedicated support for apartment listings.

**Category:** Marketplaces | **Website:** [olx.ba/](https://olx.ba/) | **Docs:** [parse.bot/marketplace/835db8ca-df11-482c-85f0-20e5e3eddcde/olx-ba-api](https://parse.bot/marketplace/835db8ca-df11-482c-85f0-20e5e3eddcde/olx-ba-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-ba-api-835db8ca/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Retrieve full details for a single listing by its numeric ID. Returns property-specific attributes (area, floor, address, condition) when the listing is a real-estate item; other categories return those fields as null. The listing ID is obtained from search_listings or search_apartments results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | The numeric listing ID (e.g. '76608394'). Obtained from search_listings results[*].id or search_apartments results[*].id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-olx-ba-api-835db8ca/get_listing_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_id":"<string>"}'
```

### search_apartments

Search specifically for apartments (category 23) with enriched detail for each result. Fetches individual listing details for the first 5 results on the page, providing area, floor, address, and condition alongside basic listing info. Paginated server-side at 20 items per page (details fetched for 5).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keywords to filter apartments (e.g. city name like 'Sarajevo', 'Mostar'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-olx-ba-api-835db8ca/search_apartments \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```

### search_listings

Full-text search across all OLX.ba listings. Supports keyword queries, category filtering, and pagination. Returns lightweight listing summaries (title, price, category) without detail attributes. Paginated server-side at 20 results per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | integer | No | Category ID to filter results (e.g. 23 for apartments, 163 for monitors, 818 for baby equipment). |
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keywords (e.g. 'monitor', 'laptop', 'stan'). |

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