# Olx (m.olx.ro) — 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 retrieve structured real estate listings from OLX Romania, including apartments, houses, land, and other properties with detailed information. Access category IDs and browse available properties by type to find what you're looking for on Romania's popular classifieds platform.

**Category:** Real Estate | **Website:** [m.olx.ro/](https://m.olx.ro/) | **Docs:** [parse.bot/marketplace/66abdec2-e063-4df4-9c86-8605e4f84b7f/m-olx-ro-api](https://parse.bot/marketplace/66abdec2-e063-4df4-9c86-8605e4f84b7f/m-olx-ro-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-ro-api-66abdec2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_id

Resolve a top-level category slug to its internal OLX category ID. Only top-level slugs are supported. Subcategory paths return an upstream error.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `path` | string | Yes | Top-level category slug to resolve such as imobiliare or electronice-si-electrocasnice. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-m-olx-ro-api-66abdec2/get_category_id \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"path":"<string>"}'
```

### search_real_estate

Search for real estate listings on OLX.ro. Returns paginated results with details for each listing including price, area, location, and description. Pagination is offset-based; advance by incrementing offset by limit. Total available listings capped at 1000 by OLX.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_path` | string | No | Top-level category path/slug such as imobiliare or electronice-si-electrocasnice. |
| `limit` | integer | No | Number of items to return per page. |
| `offset` | integer | No | Pagination offset (number of items to skip). |

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