Facebook Marketplace item API
Fetch full details for a single Facebook Marketplace listing by ID or URL (title, price, location, photos, and attributes) as normalized JSON.
Try it
Make your first request
{
"data": {
"categoryId": "general",
"creationTime": "2024-01-15T09:30:00Z",
"currency": "USD",
"description": "A short example description of this item.",
"id": "a1b2c3d4",
"isLive": true,
"isSold": true,
"locationText": "A short example description of this item.",
"priceAmount": 19.99,
"priceFormatted": "19.99",
"title": "Example title",
"url": "https://example.com/page"
},
"found": true
}interface FacebookMarketplaceItemResponse {
data: {
categoryId: string;
creationTime: string;
currency: string;
description: string;
id: string;
isLive: boolean;
isSold: boolean;
locationText: string;
priceAmount: number;
priceFormatted: string;
title: string;
url: string;
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-17 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/facebook.marketplace_item \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://www.facebook.com/marketplace/item/1656586118821988/"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| id | string | Facebook Marketplace item ID. |
| url | string | "https://www.facebook.com/marketplace/item/1656586118821988/"Facebook Marketplace item URL. |
| Response | ||
| data | object | |
| data.categoryId | string | Populated whenever the provider has data for the entity. |
| data.creationTime | string | Populated whenever the provider has data for the entity. |
| data.currency | string | Populated whenever the provider has data for the entity. |
| data.description | string | Populated whenever the provider has data for the entity. |
| data.id | string | Populated whenever the provider has data for the entity. |
| data.isLive | boolean | |
| data.isSold | boolean | |
| data.locationText | string | Populated whenever the provider has data for the entity. |
| data.priceAmount | number | Populated whenever the provider has data for the entity. |
| data.priceFormatted | string | Populated whenever the provider has data for the entity. |
| data.title | string | Populated whenever the provider has data for the entity. |
| data.url | string | Populated whenever the provider has data for the entity. |
| found | boolean | |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $1.20 |
FAQ
About the Facebook Marketplace item API
The AnyAPI Facebook Marketplace item API returns Facebook marketplace item data as normalized JSON from one POST call to /v1/run/facebook.marketplace_item. Fetch full details for a single Facebook Marketplace listing by ID or URL (title, price, location, photos, and attributes) as normalized JSON. AnyAPI returns one normalized schema whichever source serves it. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Facebook marketplace item calls through AnyAPI succeeded, with a median response time of 2.8 seconds across 102 measured calls.