# Autoscout24 (Czechia) — 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 car listings from AutoScout24.cz to find detailed vehicle information including specifications, pricing, and availability. Access comprehensive car data across multiple listings with filtering and taxonomy options to discover the perfect vehicle match.

**Category:** Automotive | **Website:** [autoscout24.cz/](https://autoscout24.cz/) | **Docs:** [parse.bot/marketplace/5ee887e2-d82a-4d45-a98b-ad5fc30aec2c/autoscout24-cz-api](https://parse.bot/marketplace/5ee887e2-d82a-4d45-a98b-ad5fc30aec2c/autoscout24-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-autoscout24-cz-api-5ee887e2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Retrieve full detailed information for a specific car listing including description, equipment lists, technical data, seller contact, and high-resolution images. Requires a listing URL as returned by search_listings. Stale or removed listings return an input_not_found error.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the listing as returned in search_listings results (e.g. 'https://www.autoscout24.cz/nabidky/bmw-model-...-<uuid>'). Relative paths starting with '/nabidky/' are also accepted. |

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

### get_taxonomy

Fetch the list of all car makes and their corresponding IDs available on AutoScout24.cz. Use the returned make IDs as the 'make' parameter in search_listings. Returns a sorted list of all makes.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autoscout24-cz-api-5ee887e2/get_taxonomy \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_listings

Search car listings across Europe with filters for make, model, price, mileage, fuel type, transmission, country, and year. Returns paginated results sorted by the chosen criterion. When no country filter is specified, listings from all supported countries are returned. Each listing includes summary information; use get_listing_details with the listing URL for full vehicle data including equipment and technical specs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Country code filter. Accepted values include 'AT', 'BE', 'DE', 'ES', 'FR', 'IT', 'LU', 'NL'. Omitting returns listings from all of Europe. |
| `desc` | integer | No | Sort direction: 0 for ascending, 1 for descending. |
| `fuel` | string | No | Fuel type code. |
| `gear` | string | No | Transmission type code. |
| `make` | string | No | Make ID as returned by get_taxonomy (e.g. '13' for BMW, '9' for Audi, '32' for Volkswagen). |
| `mileage_from` | integer | No | Minimum mileage in km. |
| `mileage_to` | integer | No | Maximum mileage in km. |
| `model` | string | No | Model ID within the selected make. |
| `page` | integer | No | Page number for pagination. |
| `price_from` | integer | No | Minimum price in EUR. |
| `price_to` | integer | No | Maximum price in EUR. |
| `sort` | string | No | Sorting criteria. |
| `year_from` | integer | No | Minimum year of first registration. |
| `year_to` | integer | No | Maximum year of first registration. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-autoscout24-cz-api-5ee887e2/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","desc":"<integer>","fuel":"<string>","gear":"<string>","make":"<string>","mileage_from":"<integer>","mileage_to":"<integer>","model":"<string>","page":"<integer>","price_from":"<integer>","price_to":"<integer>","sort":"<string>","year_from":"<integer>","year_to":"<integer>"}'
```
