# Bazos — 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 Bazos.cz, the Czech classifieds marketplace, across all sections including jobs, services, real estate, vehicles, and more. Filter by keyword, location, price range, and category. Retrieve full details for individual listings and explore available categories within any section.

**Category:** Marketplaces | **Website:** [bazos.cz/](https://bazos.cz/) | **Docs:** [parse.bot/marketplace/33ab2d49-1421-4e90-9fe1-929463c5f421/bazos-cz-api](https://parse.bot/marketplace/33ab2d49-1421-4e90-9fe1-929463c5f421/bazos-cz-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-bazos-cz-api-33ab2d49/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

Get available categories for a specific section subdomain. Each category has a name and URL that can be used for browsing. The 'www' section returns top-level site links; use a specific subdomain like 'prace', 'auto', 'sluzby' to get meaningful category listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `section` | string | No | Site section subdomain to get categories for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bazos-cz-api-33ab2d49/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"section":"<string>"}'
```

### get_listing_detail

Retrieve full details of a single listing by its URL. Returns title, full description, price, location, contact name, images, and phone numbers extracted from the description text. The URL must be a valid bazos.cz listing URL (e.g. from search_listings results).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the listing (e.g. 'https://auto.bazos.cz/inzerat/123456789/skoda-octavia.php') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bazos-cz-api-33ab2d49/get_listing_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_listings

Search for listings across different sections (www, prace, sluzby, auto, reality, etc.) of bazos.cz. Returns up to 20 listings per page. Pagination uses offset (items, not pages) — pass offset=0, 20, 40, etc. to advance. When query is omitted, returns the latest listings in the section. The www section searches across all sections; specific subdomains scope to that category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Location filter (e.g. 'Praha', 'Brno', 'Praha 4') |
| `max_price` | string | No | Maximum price filter in CZK (e.g. '50000') |
| `min_price` | string | No | Minimum price filter in CZK (e.g. '1000') |
| `offset` | integer | No | Pagination offset (items, not pages). Advance by 20 per page: 0, 20, 40, etc. |
| `query` | string | No | Search query text (e.g. 'mobil', 'řidič', 'byt') |
| `radius` | string | No | Search radius in km from location (e.g. '25', '50') |
| `section` | string | No | Site section/subdomain to search within. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bazos-cz-api-33ab2d49/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","max_price":"<string>","min_price":"<string>","offset":"<integer>","query":"<string>","radius":"<string>","section":"<string>"}'
```
