# La Centrale — 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 thousands of used cars from La Centrale, France's top automotive marketplace, with detailed specifications like price, mileage, engine type, gearbox, and exterior color. Find your next vehicle by filtering listings and comparing comprehensive car details all in one place.

**Category:** Automotive | **Website:** [www.lacentrale.fr/listing?makesModelsCommercialNames=FERRARI](https://www.lacentrale.fr/listing?makesModelsCommercialNames=FERRARI) | **Docs:** [parse.bot/marketplace/3448478d-df2a-4662-b464-e92c4142c14b/lacentrale-fr-api](https://parse.bot/marketplace/3448478d-df2a-4662-b464-e92c4142c14b/lacentrale-fr-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-lacentrale-fr-api-3448478d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_cars

Full-text search over La Centrale's used-car inventory with filters for make, model, energy type, gearbox, price range, mileage, and year. Returns paginated results (up to 16 listings per page). When no filters are supplied, returns the broadest inventory. Pagination is controlled by page and max_pages; the response includes total count for client-side page math.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `energy` | string | No | Fuel type filter. |
| `gearbox` | string | No | Transmission type filter. |
| `make` | string | No | Car manufacturer (e.g., FERRARI, BMW, PEUGEOT, RENAULT). Case-insensitive, converted to uppercase internally. |
| `max_pages` | integer | No | Maximum number of pages to fetch. Capped at 50. Each page returns up to 16 listings. |
| `mileage_max` | integer | No | Maximum mileage in kilometers. |
| `model` | string | No | Car model (e.g., 308, X5, CLIO). Must be used together with make. |
| `page` | integer | No | Starting page number for results. |
| `price_max` | integer | No | Maximum price in euros. |
| `price_min` | integer | No | Minimum price in euros. |
| `year_max` | integer | No | Maximum year of manufacture. |
| `year_min` | integer | No | Minimum year of manufacture. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lacentrale-fr-api-3448478d/search_cars \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"energy":"<string>","gearbox":"<string>","make":"<string>","max_pages":"<integer>","mileage_max":"<integer>","model":"<string>","page":"<integer>","price_max":"<integer>","price_min":"<integer>","year_max":"<integer>","year_min":"<integer>"}'
```
