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
1mo ago
Try it
Car manufacturer (e.g., FERRARI, BMW, PEUGEOT, RENAULT). Case-insensitive, converted to up
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), 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 →
car-part.com API
Search for recycled auto parts across thousands of vehicles and get detailed information on pricing, availability, and specifications from car-part.com. Find the exact parts you need with comprehensive search metadata and individual part details to compare options and locate the best deals.
honda.ca API
Get current Honda Canada vehicle pricing, lease and finance payment options, APR rates, and available incentives across all Canadian provinces to compare deals in real-time. Calculate custom payment scenarios and browse all Honda models with their latest promotional offers directly from Honda Canada's official pricing data.
autodoc.co.uk API
Find auto parts and check compatibility with your vehicle by browsing makes, models, and engines, then search for parts with detailed specifications and discover equivalent alternatives. Get everything you need to identify the right replacement parts for any car in the Autodoc catalog.
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.
auctiontime.com API
Search and browse equipment and truck auction listings from AuctionTime.com, view detailed information about specific auctions, filter by category and auctioneer, and track auction results by date. Access comprehensive auction data including listings, categories, and auctioneer information all in one place.
yad2.co.il API
Search for apartments and cars on Yad2's marketplace and access detailed listing information including photos, prices, and specifications. Instantly reveal seller contact information to connect directly with real estate agents and car dealers.
turo.com API
Search for peer-to-peer car rentals across Turo by location and dates to browse available vehicles with pricing, specifications, and real-time availability. Get detailed information on specific cars to compare features and make rental decisions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.