Documentation Index
Fetch the complete documentation index at: https://docs.lobstr.io/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve scraped data from your ParuVendu Listings Scraper runs.
Your API authentication token. Value: Token YOUR_API_KEY
Query Parameters
Hash of the squid to get results from.
Hash of a specific run (optional).
Page number (default: 1).
Results per page (default: 50, max: 100).
Result Fields
Direct URL to the listing on paruvendu.fr.
Title of the listing. Example: BMW Série 3 320d 150ch
Top-level category of the listing (e.g. car, real estate). Example: voiture
Type of listing (e.g. sale, rental). Example: vente
Sub-category or asset type within the section. Example: berline
Listed price. Example: 12500
Currency of the price. Example: EUR
Vehicle manufacturer or brand. Example: BMW
Vehicle model. Example: Série 3
Year of manufacture. Example: 2018
Odometer reading in kilometres. Example: 85000
Fuel type (e.g. Diesel, Essence, Électrique). Example: Diesel
Gearbox type (e.g. Manuelle, Automatique). Example: Manuelle
City or region of the listing. Example: Paris
Postal code of the listing location. Example: 75001
Number of rooms (for real estate listings).
Surface area in square metres (for real estate listings).
URL of the main listing image.
Short preview of the listing description.
Full description text (available when get_annonce_details is enabled).
List of features or equipment (available when get_annonce_details is enabled).
Name of the seller (available when get_annonce_details is enabled).
URL to the seller’s profile page (available when get_annonce_details is enabled).
Number of active listings by the seller (available when get_annonce_details is enabled).
Seller phone number (available when get_annonce_details is enabled).
Unique listing reference number on paruvendu.fr.
Date the listing was last published or refreshed. Example: 2026-03-15
ISO 8601 timestamp of the last update. Example: 2026-03-15T10:30:00Z
Energy performance rating (DPE) for real estate listings (A–G). Example: C
Greenhouse gas emission rating (GES) for real estate listings (A–G). Example: D
Additional structured info extracted from the listing summary.
Code Examples
curl -X GET "https://api.lobstr.io/v1/results?squid=YOUR_SQUID_HASH&page=1&limit=50" \
-H "Authorization: Token YOUR_API_KEY"
Response
{
"total_results": 87,
"limit": 50,
"page": 1,
"total_pages": 2,
"result_from": 1,
"result_to": 50,
"data": [
{
"id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"object": "result",
"squid": "YOUR_SQUID_HASH",
"run": "RUN_HASH",
"url": "https://www.paruvendu.fr/a/voiture-occasion/bmw/serie-3/12345678/",
"title": "BMW Série 3 320d 150ch BVA",
"section": "voiture",
"annonce_type": "vente",
"asset_type": "berline",
"price": 12500,
"currency": "EUR",
"make": "BMW",
"model": "Série 3",
"year": 2018,
"mileage": 85000,
"fuel_type": "Diesel",
"gearbox": "Automatique",
"location": "Paris",
"postal_code": "75001",
"picture": "https://img.paruvendu.fr/thumb/12345678_1.jpg",
"description_preview": "Véhicule en excellent état, révision faite...",
"last_publication_date": "2026-03-15",
"reference": "12345678",
"scraping_time": "2026-03-20T09:15:00.000Z"
}
],
"next": "https://api.lobstr.io/v1/results?squid=YOUR_SQUID_HASH&page=2&limit=50",
"previous": null
}