Facebook API

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.

POST/v1/run/facebook.marketplace_item
Uptime
100.00%
30d · 102 calls
Requests
102
30d · weekly, last 12 wks
Response
2.8s
median · 30d

Pricing

One price, in dollars

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "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
}
Response interface
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 30d
POST /v1/run/facebook.marketplace_item
curl -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/"}'
FieldTypeExample value
Request body
idstringFacebook Marketplace item ID.
urlstring"https://www.facebook.com/marketplace/item/1656586118821988/"Facebook Marketplace item URL.
Response
dataobject
data.categoryIdstringPopulated whenever the provider has data for the entity.
data.creationTimestringPopulated whenever the provider has data for the entity.
data.currencystringPopulated whenever the provider has data for the entity.
data.descriptionstringPopulated whenever the provider has data for the entity.
data.idstringPopulated whenever the provider has data for the entity.
data.isLiveboolean
data.isSoldboolean
data.locationTextstringPopulated whenever the provider has data for the entity.
data.priceAmountnumberPopulated whenever the provider has data for the entity.
data.priceFormattedstringPopulated whenever the provider has data for the entity.
data.titlestringPopulated whenever the provider has data for the entity.
data.urlstringPopulated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$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.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Fetch full details for a single Facebook Marketplace listing by ID or URL (title, price, location, photos, and attributes) as normalized JSON. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

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. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.