logo
languageFRdown
menu

La Centrale Vehicle Listings Scraper

Collect public used-vehicle listings from La Centrale result pages, including vehicle details, prices, seller information, and listing links.

Aperçu

La Centrale Vehicle Listings Scraper turns public used-vehicle result pages into a structured table for market analysis. Each row keeps a vehicle's make and model, variant details, model year, transmission, mileage, fuel type, displayed price, seller information, and detail-page link together.

This makes it easier to compare a set of French used-car listings without manually copying information from individual ads. Pricing, specification, location, and seller signals remain connected to the source listing, so analysts can filter the market while retaining a direct route back to each vehicle page.

Data notes

Records come from vehicle listings publicly visible on the submitted La Centrale result pages at collection time. The input page address is retained for provenance, while the listing address identifies the individual vehicle ad. Price and mileage values preserve the site's displayed text, including the euro symbol and mileage unit when present; they are not converted into normalized numeric values. Seller location can be a French department code rather than a full city name, and the listing label can contain a source status such as “NOT_COMPUTED” rather than a consumer-facing rating. A blank seller phone, label, or other optional value means that the public listing did not provide that field. Removed, private, signed-in-only, or otherwise inaccessible listings are not covered.

What results look like

Each record represents one vehicle listing found on a submitted result page:

Vehicle titleModel yearMileageListed priceSeller nameListing URL
ASTON MARTIN VANQUISH II201543624km134900€AUTO REAL LAND ROVER MAZDA SUZUKIhttps://www.lacentrale.fr/auto-occasion-annonce-87119671804.html
ASTON MARTIN VANQUISH II VOLANTE201820400km234990€BPM Exclusive - Aston Martin Parishttps://www.lacentrale.fr/auto-occasion-annonce-87119320730.html
ASTON MARTIN VANQUISH II VOLANTE201428700km149000€DPM MOTORShttps://www.lacentrale.fr/auto-occasion-annonce-87103251521.html

Other available columns include “Vehicle details,” “Transmission,” “Fuel type,” “Listing label,” “Seller location,” “Seller phone,” and “Input URL.”

Use cases

  • For price benchmarking, compare “Listed price,” “Model year,” and “Mileage” within similar “Vehicle title” and “Vehicle details” groups to see how listings are positioned.
  • For inventory segmentation, group “Vehicle title,” “Transmission,” and “Fuel type” to understand which configurations appear in the visible market.
  • For dealer coverage analysis, compare “Seller name” and “Seller location,” then retain “Listing URL” for reviewing individual offers.
  • For lead-list preparation, combine “Seller name,” “Seller phone,” and “Listing URL” to identify listings with publicly displayed contact information.

Périmètre et limites

Accepts one or more public La Centrale result-page URLs and a page limit from 1 to 300; returns up to 100,000 publicly visible vehicle records per run, with fields left empty when a listing does not display them.

  • Adapté pour
  • When you need structured used-vehicle listings from one or more public La Centrale result pages
  • When you need comparable prices, mileage, model details, seller information, and listing links for vehicle-market research
  • À ne pas utiliser pour
  • When you only have a vehicle description and no La Centrale result-page URL
  • When you need private, signed-in-only, removed, or unpublished listing data

Gestion des échecs

Comportement en cas d'échec et de nouvelle tentative déclaré par l'auteur. Nous vous recommandons de l'inclure dans votre prompt système lors de l'intégration.

  1. 1If no records are returned, confirm that each submitted URL still opens a public result page with vehicle listings, then retry with a smaller page limit
  2. 2If a run stops before completion, retry the same URL set once; if it stops again, reduce the number of URLs or the page limit

Entrée

Paramètres requis pour appeler cette App, générés à partir de l'input.schema du manifest.json.

ChampNom métierTypeRequisDéfautÉnum / ContraintesExempleDescription
result_page_urlsLa Centrale result-page URLsarray<string>Oui["https://www.lacentrale.fr/occasion-voiture-modele-aston+martin-vanquish.html"]Public La Centrale vehicle search or model result-page URLs to collect, with one full URL per item.
page_limitMaximum result pagesintegerOui1–3001Maximum number of result pages to collect for each submitted URL. Enter a value from 1 to 300; larger values can increase runtime and cost.

Sortie

Structure des champs d'un enregistrement, générée à partir de l'output.schema du manifest.json.

ChampNom métierTypeExempleDescription
input_urlInput URLstringhttps://www.lacentrale.fr/occasion-voiture-modele-aston+martin-vanquish.htmlSubmitted La Centrale result-page URL associated with the vehicle record.
titleVehicle titlestringASTON MARTIN VANQUISH IIVehicle make, model, and generation shown in the listing title.
subtitleVehicle detailsstringII COUPE 6.0 573 BOITE TOUCHTRONIC 2 4PLTrim, body style, engine, transmission, or other variant text displayed beneath the title.
yearModel yearstring2015Model year displayed for the vehicle.
transmissionTransmissionstringAUTOTransmission type displayed for the vehicle.
mileageMileagestring43624kmMileage text displayed for the vehicle, including the unit when present.
fuel_typeFuel typestringESSENCEFuel or energy type displayed for the vehicle.
priceListed pricestring134900€Vehicle price as displayed in the listing, preserving its currency symbol and formatting.
listing_labelListing labelstringNOT_COMPUTEDAdditional label or assessment text returned for the listing when available.
seller_nameSeller namestringAUTO REAL LAND ROVER MAZDA SUZUKIDealer or seller name displayed with the listing.
locationSeller locationstring31Location or department code displayed for the seller.
seller_phoneSeller phonestring0536691867Public seller phone number displayed with the listing when available.
detail_urlListing URLstringhttps://www.lacentrale.fr/auto-occasion-annonce-87119671804.htmlPublic La Centrale detail-page address for the vehicle listing.

Schema de l'enregistrement

La sortie est renvoyée enregistrement par enregistrement. detail.output.idFieldHint

output.schema
{
  "type": "object",
  "properties": {
    "input_url": {
      "type": "string",
      "title": "Input URL",
      "description": "Submitted La Centrale result-page URL associated with the vehicle record.",
      "prefill": "https://www.lacentrale.fr/occasion-voiture-modele-aston+martin-vanquish.html"
    },
    "title": {
      "type": "string",
      "title": "Vehicle title",
      "description": "Vehicle make, model, and generation shown in the listing title.",
      "prefill": "ASTON MARTIN VANQUISH II"
    },
    "subtitle": {
      "type": "string",
      "title": "Vehicle details",
      "description": "Trim, body style, engine, transmission, or other variant text displayed beneath the title.",
      "prefill": "II COUPE 6.0 573 BOITE TOUCHTRONIC 2 4PL"
    },
    "year": {
      "type": "string",
      "title": "Model year",
      "description": "Model year displayed for the vehicle.",
      "prefill": "2015"
    },
    "transmission": {
      "type": "string",
      "title": "Transmission",
      "description": "Transmission type displayed for the vehicle.",
      "prefill": "AUTO"
    },
    "mileage": {
      "type": "string",
      "title": "Mileage",
      "description": "Mileage text displayed for the vehicle, including the unit when present.",
      "prefill": "43624km"
    },
    "fuel_type": {
      "type": "string",
      "title": "Fuel type",
      "description": "Fuel or energy type displayed for the vehicle.",
      "prefill": "ESSENCE"
    },
    "price": {
      "type": "string",
      "title": "Listed price",
      "description": "Vehicle price as displayed in the listing, preserving its currency symbol and formatting.",
      "prefill": "134900€"
    },
    "listing_label": {
      "type": "string",
      "title": "Listing label",
      "description": "Additional label or assessment text returned for the listing when available.",
      "prefill": "NOT_COMPUTED"
    },
    "seller_name": {
      "type": "string",
      "title": "Seller name",
      "description": "Dealer or seller name displayed with the listing.",
      "prefill": "AUTO REAL LAND ROVER MAZDA SUZUKI"
    },
    "location": {
      "type": "string",
      "title": "Seller location",
      "description": "Location or department code displayed for the seller.",
      "prefill": "31"
    },
    "seller_phone": {
      "type": "string",
      "title": "Seller phone",
      "description": "Public seller phone number displayed with the listing when available.",
      "prefill": "0536691867"
    },
    "detail_url": {
      "type": "string",
      "title": "Listing URL",
      "description": "Public La Centrale detail-page address for the vehicle listing.",
      "prefill": "https://www.lacentrale.fr/auto-occasion-annonce-87119671804.html"
    }
  },
  "required": [
    "detail_url"
  ],
  "additionalProperties": false
}

Intégration

Cette App peut être intégrée via MCP, API, SDK ou export de fichiers — tous les canaux partagent les mêmes capacités et la même tarification. Chaque requête s'authentifie avec l'en-tête Authorization: Bearer à l'aide d'une API Key (longue durée, créée dans la console Open Platform) ; les clients MCP peuvent aussi se connecter via OAuth, sans clé. D'autres options comme la CLI et Skill arrivent bientôt.

Avec MCP (Model Context Protocol), vous pouvez appeler cette App directement depuis des clients IA comme Claude et Cursor. Choisissez votre client et votre mode d'authentification, puis copiez la config ci-dessous.

Config du client

Remplacez la valeur après Bearer par votre API Key longue durée. Fonctionne dans n'importe quel client, en CI ou en environnement sans navigateur.

mcpServers config
{
  "mcpServers": {
    "YiJacobJohnRaku__lacentrale-vehicules-scraper": {
      "type": "http",
      "url": "https://mcp-v2.octoparse.com?pin=YiJacobJohnRaku/lacentrale-vehicules-scraper",
      "headers": { "Authorization": "Bearer <YOUR_API_KEY>" }
    }
  }
}

Laissez l'IA tout configurer pour vous

Vous ne voulez pas modifier les configs à la main ? Copiez le prompt d'installation et collez-le dans n'importe quel client IA — il effectuera la configuration à sa manière. (Le prompt demande à l'IA de vous réclamer votre API Key, afin que les identifiants ne finissent jamais dans l'historique de conversation ni dans des configs partagées.)

detail.access.mcp.composeHint

Tarifs

Returned vehicle listing

Facturé selon le nombre d'enregistrements renvoyés avec succès. Les tâches échouées ne sont pas facturées.

0,0008 $US/ enregistrement

Plusieurs événements de facturation se cumulent indépendamment — voir chaque élément pour les détails. Les tâches échouées ne sont pas facturées.

Essayer maintenant

Renseignez les paramètres et lancez l'exécution — les résultats proviennent d'un appel réel.

Exemple
Les paramètres sont validés par rapport à l'input.schema avant la soumission
Veuillez d'abord renseigner les paramètres requis
0,0008 $US / enregistrement