Discover/lacentrale.fr API
live

lacentrale.fr APIwww.lacentrale.fr

Search used car listings from La Centrale (lacentrale.fr) via API. Filter by make, model, fuel type, gearbox, price, mileage, and year. Returns up to 16 listings per page.

Endpoints
1
Updated
2mo ago
Try it
Car manufacturer (e.g., FERRARI, BMW, PEUGEOT, RENAULT). Case-insensitive, converted to uppercase internally.
Starting page number for results.
Car model (e.g., 308, X5, CLIO). Must be used together with make.
Fuel type filter. Accepted values: ESSENCE (petrol), DIESEL, ELECTRIQUE (electric), HYBRIDE (hybrid).
Transmission type filter. Accepted values: MANUAL, AUTO.
Maximum year of manufacture.
Minimum year of manufacture.
Maximum number of pages to fetch. Capped at 50. Each page returns up to 16 listings.
Maximum price in euros.
Minimum price in euros.
Maximum mileage in kilometers.
api.parse.bot/scraper/efdbce48-24af-490b-8937-33266159cb2b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/efdbce48-24af-490b-8937-33266159cb2b/search_cars?make=PEUGEOT&page=1&model=308&energy=DIESEL&max_pages=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalclick to expand

Search for car listings on La Centrale with various filters including make, model, energy type, gearbox, price range, mileage, and year. Returns paginated results with detailed vehicle specifications. Each page returns up to 16 listings.

Input
ParamTypeDescription
makestringCar manufacturer (e.g., FERRARI, BMW, PEUGEOT, RENAULT). Case-insensitive, converted to uppercase internally.
pageintegerStarting page number for results.
modelstringCar model (e.g., 308, X5, CLIO). Must be used together with make.
energystringFuel type filter. Accepted values: ESSENCE (petrol), DIESEL, ELECTRIQUE (electric), HYBRIDE (hybrid).
gearboxstringTransmission type filter. Accepted values: MANUAL, AUTO.
year_maxintegerMaximum year of manufacture.
year_minintegerMinimum year of manufacture.
max_pagesintegerMaximum number of pages to fetch. Capped at 50. Each page returns up to 16 listings.
price_maxintegerMaximum price in euros.
price_minintegerMinimum price in euros.
mileage_maxintegerMaximum mileage in kilometers.
Response
{
  "type": "object",
  "fields": {
    "page": "integer - Starting page number used for this request",
    "total": "integer - Total number of matching listings across all pages",
    "listings": "array of listing objects with vehicle details including reference, make, model, year, price, mileage, energy, gearbox, exterior_color, seller info, and more",
    "pages_fetched": "integer - Number of pages actually fetched",
    "listings_count": "integer - Number of listings returned in this response"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 3530,
      "listings": [
        {
          "make": "PEUGEOT",
          "year": 2021,
          "doors": 5,
          "model": "308",
          "price": 12500,
          "energy": "DIESEL",
          "family": "AUTO",
          "is_new": false,
          "country": "FR",
          "gearbox": "MANUAL",
          "mileage": 89684,
          "version": "II (2) 1.5 BLUEHDI 130 S&S 7CV ALLURE",
          "category": "COMPACTE",
          "photo_url": "https://pictures.lacentrale.fr/classifieds/E118648642_STANDARD_0.jpg?format=webp&size=352x264",
          "reference": "E118648642",
          "department": "88",
          "trim_level": "ALLURE",
          "seller_name": "FARINEZ SOPHIE",
          "seller_type": "PRO",
          "motorization": "1.5 BLUEHDI 130",
          "detailed_model": "PEUGEOT 308 II phase 2",
          "exterior_color": "gris foncé",
          "pictures_count": 3,
          "commercial_name": "308 (2E GENERATION)",
          "first_online_date": "2025-09-05",
          "delivery_available": false
        }
      ],
      "pages_fetched": 1,
      "listings_count": 16
    },
    "status": "success"
  }
}

About the lacentrale.fr API

The La Centrale API provides access to used car listings from lacentrale.fr, France's leading automotive marketplace, through a single search_cars endpoint that returns up to 16 vehicle records per page across 14 structured fields per listing. Each result includes make, model, year, price, mileage, fuel type, gearbox, and exterior color, with filters for transmission, energy type, year range, and pagination control via max_pages (capped at 50).

What the API Returns

The search_cars endpoint queries the La Centrale used car inventory and returns paginated listing objects. Each page contains up to 16 results. The top-level response includes total (the full count of matching listings across all pages), pages_fetched, listings_count, and the listings array. Each listing object carries a reference identifier alongside vehicle attributes: make, model, year, price, mileage, energy, gearbox, and exterior_color.

Filtering and Pagination

The make parameter accepts any manufacturer name (e.g., FERRARI, RENAULT, BMW) and is normalized to uppercase. model can be combined with make to narrow results to a specific variant such as CLIO or 308. The energy filter accepts ESSENCE, DIESEL, ELECTRIQUE, or HYBRIDE. Transmission can be filtered using gearbox with values MANUAL or AUTO. Year range is controlled with year_min and year_max. Use page to set the starting page and max_pages to control how many pages are fetched in a single call, up to a cap of 50 pages (800 listings).

Coverage and Scope

Listings are sourced from lacentrale.fr, which focuses on the French used car market. Results reflect the live inventory available on the platform at query time. The total field in the response tells you how many matching vehicles exist across all pages, so you can decide whether to paginate further before committing to a full max_pages pull.

Common use cases
  • Aggregating French used car prices for a specific make and model to build a market valuation tool
  • Monitoring Ferrari or other luxury car inventory levels and price trends on the French market
  • Filtering electric (ELECTRIQUE) and hybrid (HYBRIDE) vehicle listings to support EV-focused comparison features
  • Extracting mileage and year data across a model range to build depreciation or pricing curves
  • Building a lead-generation pipeline for used car dealers by tracking new listings matching specific filters
  • Comparing automatic vs manual transmission availability and pricing for a given model across years
  • Populating a car-search app with live French market inventory filtered by fuel type and price range
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does La Centrale offer an official developer API?+
La Centrale does not publish a public developer API or documented REST interface. There is no official endpoint documentation or API key program available from lacentrale.fr.
What does the search_cars endpoint return beyond basic price and mileage?+
Each listing object includes reference, make, model, year, price, mileage, energy (fuel type), gearbox (transmission), and exterior_color. The total field in the response shows the full count of matching listings across all pages, and pages_fetched confirms how many pages were actually retrieved in the call.
Does the API support filtering by price range?+
The current search_cars endpoint does not expose price_min or price_max filter parameters. Filtering is limited to make, model, energy, gearbox, year_min, and year_max. You can fork this API on Parse and revise it to add price-range filtering if that capability is needed.
Is seller contact information or individual listing detail pages included?+
Seller contact details, phone numbers, and dealer information are not included in the current response fields. The API covers vehicle specification data and listing metadata. You can fork it on Parse and revise to add a dedicated listing-detail endpoint that retrieves additional seller or contact data.
How does pagination work and what is the maximum number of listings retrievable per request?+
Each page returns up to 16 listings. The max_pages parameter controls how many pages are fetched in a single API call, with a hard cap of 50 pages — meaning a maximum of 800 listings per request. Use the page parameter to set the starting page offset, and use the total field in the response to determine whether further calls are needed to exhaust results.
Page content last updated . Spec covers 1 endpoint from www.lacentrale.fr.
Related APIs in AutomotiveSee all →
lacentrale.com API
Search used car listings on lacentrale.fr to instantly compare price statistics—including minimum, maximum, average, and median values—filtered by make, model, year, fuel type, gearbox, and other specifications. Make informed pricing decisions by analyzing real market data for the exact vehicle configuration you're interested in.
leboncoin.fr API
Search and retrieve detailed listings from Leboncoin across cars, real estate, jobs, and other categories with advanced filtering options. Access seller profiles, pricing analytics, and comprehensive listing details to find exactly what you're looking for on France's leading classifieds platform.
autos.mercadolibre.com.ar API
Search for used and new cars on MercadoLibre Argentina and instantly retrieve detailed listings with brand, model, year, mileage, price, location, seller information, and photos. Build car comparison tools, price tracking apps, or market analysis dashboards with comprehensive vehicle data from Argentina's largest online marketplace.
cars.com API
Search for vehicles on Cars.com using filters like price, make, and model, then get detailed specifications and dealer inventory information for any listing you're interested in. Access comprehensive vehicle details including pricing, features, and dealer contact information all in one place.
cardekho.com API
Search and browse used and new car listings with detailed vehicle information, pricing, and specifications from CarDekho.com. View immersive 360-degree vehicle imagery to inspect cars from every angle before making a purchase decision.
autoplius.lt API
Search for cars and access detailed information like pricing, specifications, and listings from Autoplius.lt, Lithuania's largest vehicle classifieds marketplace. Find exactly what you're looking for with comprehensive car details all in one place.
cars24.com API
Search and browse used car listings across Indian cities with complete details including prices, specifications, and features. Find the perfect car by filtering options and comparing vehicle information all in one place.
carsales.com API
Search for cars on Carsales and retrieve detailed listings with technical specifications, makes, and models. Filter and browse available vehicles by make to find exactly what you're looking for.