Endpoint Playground
Test Crawlora's Get Facebook Marketplace listing 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/facebook/marketplace/item/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Facebook Marketplace numeric listing id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "1435631148377071",
"title": "2003 Toyota Sequoia · SR5 Sport Utility 4D",
"description": "2003 Toyota Sequoia SR5 2WD\n\n* 227,490 miles\n* 4.7L V8\n* Automatic transmission\n* Clean title",
"price": {
"formatted": "$4,500",
"amount": "4500.00",
"currency": "USD",
"isFree": false
},
"condition": "USED",
"productType": "AUTOS_VEHICLE",
"categoryId": "807311116002614",
"locationText": "Daly City, CA",
"image": "https://scontent.fsgn12-1.fna.fbcdn.net/v/t39.30808-6/763299014_1050401254209069_111052989002879713_n.jpg",
"isLive": true,
"isPending": false,
"isSold": false,
"createdAt": "2026-08-01T12:00:14Z",
"url": "https://www.facebook.com/marketplace/item/1435631148377071/",
"sourceUrl": "https://www.facebook.com/marketplace/item/1435631148377071/"
}
}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.
Fetches public data for a single Facebook Marketplace listing given its numeric listing id: title, price, description, condition, a representative photo, and approximate (city/state) location. Facebook's own logged-out payload withholds seller identity entirely, so this response has no seller field by design.
{
"code": 200,
"msg": "OK",
"data": {
"id": "1435631148377071",
"title": "2003 Toyota Sequoia · SR5 Sport Utility 4D",
"description": "2003 Toyota Sequoia SR5 2WD\n\n* 227,490 miles\n* 4.7L V8\n* Automatic transmission\n* Clean title",
"price": {
"formatted": "$4,500",
"amount": "4500.00",
"currency": "USD",
"isFree": false
},
"condition": "USED",
"productType": "AUTOS_VEHICLE",
"categoryId": "807311116002614",
"locationText": "Daly City, CA",
"image": "https://scontent.fsgn12-1.fna.fbcdn.net/v/t39.30808-6/763299014_1050401254209069_111052989002879713_n.jpg",
"isLive": true,
"isPending": false,
"isSold": false,
"createdAt": "2026-08-01T12:00:14Z",
"url": "https://www.facebook.com/marketplace/item/1435631148377071/",
"sourceUrl": "https://www.facebook.com/marketplace/item/1435631148377071/"
}
}curl "https://api.crawlora.net/api/v1/facebook/marketplace/item/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"