Discover/lacentrale.com API
live

lacentrale.com APIlacentrale.com

Get min, max, average, and median used car prices from La Centrale listings. Filter by make, model, year, fuel type, gearbox, and horsepower.

Endpoints
1
Updated
3mo ago
Try it
Model year to filter by exact year (e.g., 2020).
Gearbox type filter: MANUELLE or AUTOMATIQUE.
Filter by version/title substring match (e.g., TCE 75 GENERATION).
Car make/brand in uppercase (e.g., RENAULT, PEUGEOT, BMW).
Car model in uppercase (e.g., CLIO, 308, SERIE 3).
Fuel type filter: ESSENCE, DIESEL, ELECTRIQUE, HYBRIDE, or GPL.
Maximum number of pages to fetch (23 listings per page). 0 fetches all pages up to 50.
Filter by DIN horsepower extracted from motorization (e.g., 75, 100).
api.parse.bot/scraper/e516e6f8-069b-4a9b-bac4-ba75ceaae7c0/<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/e516e6f8-069b-4a9b-bac4-ba75ceaae7c0/get_price_stats?annee=2020&boite=MANUELLE&marque=RENAULT&modele=CLIO&energie=ESSENCE&max_pages=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalclick to expand

Get price statistics for a given car configuration from La Centrale listings. Fetches listing pages and computes min, max, average, and median prices. Supports filtering by make, model, year, fuel type, gearbox, version title, and DIN horsepower.

Input
ParamTypeDescription
anneestringModel year to filter by exact year (e.g., 2020).
boitestringGearbox type filter: MANUELLE or AUTOMATIQUE.
titrestringFilter by version/title substring match (e.g., TCE 75 GENERATION).
marquerequiredstringCar make/brand in uppercase (e.g., RENAULT, PEUGEOT, BMW).
modelerequiredstringCar model in uppercase (e.g., CLIO, 308, SERIE 3).
energiestringFuel type filter: ESSENCE, DIESEL, ELECTRIQUE, HYBRIDE, or GPL.
max_pagesintegerMaximum number of pages to fetch (23 listings per page). 0 fetches all pages up to 50.
puissance_dinstringFilter by DIN horsepower extracted from motorization (e.g., 75, 100).
Response
{
  "type": "object",
  "fields": {
    "annee": "string or null - Year filter applied",
    "boite": "string or null - Gearbox filter applied",
    "titre": "string or null - Title/version filter applied",
    "marque": "string - Car make filter applied",
    "modele": "string - Car model filter applied",
    "energie": "string or null - Energy/fuel filter applied",
    "annonces": "array of listing objects with prix, marque, modele, annee, energie, boite_vitesse, kilometrage, version, motorisation, categorie, couleur, reference",
    "prix_max": "number or null - Maximum price in EUR",
    "prix_min": "number or null - Minimum price in EUR",
    "prix_moyen": "number or null - Average price in EUR",
    "prix_median": "number or null - Median price in EUR",
    "puissance_din": "string or null - DIN power filter applied",
    "total_annonces": "integer - Total listings found on the site for the search criteria",
    "pages_analysees": "integer - Number of pages fetched",
    "annonces_analysees": "integer - Number of listings analyzed after local filters"
  },
  "sample": {
    "data": {
      "annee": "2020",
      "boite": null,
      "titre": null,
      "marque": "RENAULT",
      "modele": "CLIO",
      "energie": null,
      "annonces": [
        {
          "prix": 10990,
          "annee": 2020,
          "marque": "RENAULT",
          "modele": "CLIO",
          "couleur": "rouge metal",
          "energie": "DIESEL",
          "version": "IV (2) 1.5 DCI 90 LIMITED",
          "categorie": "CITADINE",
          "reference": "W103456864",
          "kilometrage": 72000,
          "motorisation": "1.5 DCI 90",
          "boite_vitesse": "MANUAL"
        }
      ],
      "prix_max": 14690,
      "prix_min": 7990,
      "prix_moyen": 10859.39,
      "prix_median": 10799,
      "puissance_din": null,
      "total_annonces": 1072,
      "pages_analysees": 1,
      "annonces_analysees": 23
    },
    "status": "success"
  }
}

About the lacentrale.com API

The La Centrale API exposes 1 endpoint — get_price_stats — that returns price statistics across used car listings on lacentrale.fr. A single call yields up to 12 response fields including prix_min, prix_max, prix_moyen, and a full annonces array with per-listing detail on mileage, version, motorization, and fuel type. Filters cover make, model, year, gearbox, fuel type, version substring, and DIN horsepower.

What the endpoint returns

The get_price_stats endpoint queries La Centrale listings for a given vehicle configuration and returns aggregate price statistics alongside the individual listings that produced them. The response includes prix_min, prix_max, and prix_moyen (all in EUR), plus the full annonces array. Each listing object in annonces carries prix, marque, modele, annee, energie, boite_vitesse, kilometrage, version, motorisation, and categorie — enough detail to compare individual offers against the aggregate.

Filtering options

The two required parameters are marque (e.g. RENAULT, BMW) and modele (e.g. CLIO, SERIE 3), both in uppercase. Optional filters narrow results further: annee matches an exact model year, energie accepts ESSENCE, DIESEL, ELECTRIQUE, HYBRIDE, or GPL, and boite accepts MANUELLE or AUTOMATIQUE. The titre parameter does a substring match against the version string (e.g. TCE 75 GENERATION), and puissance_din filters by DIN horsepower extracted from the motorization field.

Pagination and coverage

Listings are fetched in pages of 23. The max_pages parameter controls how many pages are retrieved; setting it to 0 fetches all available pages up to a ceiling of 50 pages (roughly 1,150 listings). This matters when you need a statistically representative sample for popular models with many active listings, versus a quick price check where a single page suffices.

Common use cases
  • Estimate fair market value for a specific trim (e.g. CLIO TCE 75 GENERATION, 2020, MANUELLE) before buying or selling
  • Build a car valuation tool that returns prix_min and prix_max as a price range for a given configuration
  • Track how diesel vs. petrol pricing differs for the same model by calling with energie set to DIESEL then ESSENCE
  • Compare automatic vs. manual transmission price premiums using the boite filter across identical make/model/year combinations
  • Populate a dealer pricing dashboard with live annonces array data including kilometrage and version per listing
  • Analyze how DIN horsepower (puissance_din) correlates with median price across trims of the same model
  • Aggregate historical snapshots of prix_moyen over time to build a used-car price index for French market segments
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 have an official developer API?+
La Centrale (lacentrale.fr) does not publish an official public developer API or documented data feed for third-party use.
What does the `annonces` array contain, and how detailed is each listing?+
Each object in annonces includes prix, marque, modele, annee, energie, boite_vitesse, kilometrage, version, motorisation, and categorie. This covers the core fields visible on a listing card — price, year, fuel type, gearbox, mileage, and trim description — but does not include seller contact details, location/department, listing URL, or photos.
Does the API cover listing location or regional price differences?+
Not currently. The annonces response fields do not include geographic data such as department, region, or city. Price statistics are computed across all matching national listings. You can fork this API on Parse and revise it to add a location filter or per-region breakdown endpoint.
How many listings does a single call process, and does `max_pages` affect the statistics?+
Each page contains 23 listings. With max_pages set to 0, the endpoint fetches up to 50 pages, giving a maximum sample of roughly 1,150 listings per call. prix_min, prix_max, and prix_moyen are computed from all listings retrieved, so a higher max_pages value produces statistics based on a larger sample — which matters for high-volume models.
Can the API return price statistics for professional dealer listings separately from private sellers?+
Not currently. The annonces array includes a categorie field per listing, but there is no filter parameter to restrict results to private or professional sellers at query time. Statistics are computed across all matching listings regardless of seller type. You can fork this API on Parse and revise it to add a seller-type filter parameter.
Page content last updated . Spec covers 1 endpoint from lacentrale.com.
Related APIs in AutomotiveSee all →
acura.ca API
Check current Acura vehicle deals, financing rates, lease payments, and incentives across all Canadian provinces and models including the ADX, ZDX, MDX, RDX, Integra, and TLX. Calculate payment options based on specific offers and models available by province.
getfpv.com API
Search and browse products from GetFPV's catalog of FPV drone components and accessories. Retrieve listings by keyword or category, view detailed product specifications, pricing, and stock status, and explore new arrivals and current sales.
firetruckmall.com API
Browse all available fire trucks from Fire Truck Mall with complete details including pricing, year, specifications, and images. Track when each listing was posted to find the newest inventory and compare vehicles across the marketplace.
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.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
team-bhp.com API
Access forum discussions, travelogues, news articles, and user profiles from Team-BHP.com to discover automotive insights, travel stories, and community conversations. Search threads, browse categories, and find trending discussions all in one place.
mazda.ca API
Find current vehicle deals, financing rates, lease options, and incentives across all Mazda Canada models and trims, with pricing tailored to your province. Get instant payment quotes to compare your options and discover the best offers available.
carjam.co.nz API
Look up detailed New Zealand vehicle information by license plate, VIN, or chassis number to instantly access registration status, WOF/COF compliance, service history, odometer readings, and damage records. Verify if a vehicle is stolen and get comprehensive specs to make informed decisions before purchasing or for fleet management.
La Centrale Used Car Prices API · Parse