Endpoint Playground
Test Crawlora's Search Leboncoin public listings API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/leboncoin/search?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| location | string | Yes | Public Leboncoin location slug |
{
"code": 200,
"data": {
"listings": [
{
"category": "sample",
"id": "sample-id",
"image_url": "https://example.com/resource",
"price_eur": 1,
"title": "sample",
"url": "https://example.com/resource"
}
],
"location": "sample",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized public listing cards from one Leboncoin location page. This endpoint excludes contacts, seller profiles, accounts, and transaction data.
{
"code": 200,
"data": {
"listings": [
{
"category": "sample",
"id": "sample-id",
"image_url": "https://example.com/resource",
"price_eur": 1,
"title": "sample",
"url": "https://example.com/resource"
}
],
"location": "sample",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/leboncoin/search?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"