Facebook
GET /v1/facebook/marketplace-item

Facebook Marketplace Item API

Get a Facebook Marketplace listing — title, price, condition, and location as structured JSON.

2 credits per request
TL;DR
Get a Facebook Marketplace listing — title, price, condition, and location as structured JSON. The Facebook Marketplace Item API (Facebook) is a single authenticated GET request to /v1/facebook/marketplace-item that responds with clean JSON and costs 2 credits. Pass cache=true for a free 24h cache hit; default is always fresh. Start with 100 free credits — no credit card.

What is the Facebook Marketplace Item API?

Paste a Facebook Marketplace item URL and get the listing as clean JSON: title, price, description, condition, delivery types, photos, and location when available. Flat 2 credits per call.

What you get

  • Marketplace Item fields as clean structured JSON
  • IDs, URLs, and titles where the platform exposes them
  • Engagement or popularity signals when available
  • Stable IDs for joining with other endpoints

Try it

Open in Playground

Fill in the parameters below and copy a ready-to-run request, or open the live Playground to run it against your account (no API key paste).

Parameters

Sign in to run live
curl "https://api.captapi.com/v1/facebook/marketplace-item?url=https%3A%2F%2Fwww.facebook.com%2Fmarketplace%2Fitem%2F2228870800986975%2F" \
  -H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."

Edit the parameters and the code updates instantly. Switch languages and hit copy.

Example response

{
  "success": true,
  "data": {
    "platform": "facebook",
    "id": "2228870800986975",
    "url": "https://www.facebook.com/marketplace/item/2228870800986975/",
    "title": "Elabest Mesh Office Chair, Ergonomic Computer Desk Chair, Sturdy Task Chair - Adjustable Lumbar Support",
    "description": "Breathable mesh office chair has an ergonomic design with a high back and adjustable headrest. This light gray task chair is manufactured by Elabest and features adjustable armrests, a five-point rolling base, and integrated lumbar support.\n\nEstimated (WxDxH): 26 x 24 x 45 in",
    "price": 125,
    "priceFormatted": "$125",
    "currency": "USD",
    "condition": "Used - like new",
    "location": "Arlington, VA",
    "latitude": 38.888854980469,
    "longitude": -77.085571289062,
    "isSold": true,
    "isLive": true,
    "deliveryTypes": [
      "IN_PERSON",
      "DOOR_PICKUP"
    ],
    "image": "https://scontent-mad1-1.xx.fbcdn.net/v/t39.84726-6/749377945_1746854896315726_817991790771142418_n.jpg?stp=dst-jpg_p720x720_tt6&_nc_cat=100&ccb=1-7&_nc_sid=92e707&_nc_ohc=Td50J02FhxwQ7kNvwEMS5Gk&_nc_oc=Adq3GF3R5f05eu3AlZfXV5BYX7n-dl-fGhjd7L4VfCb2IZztMYgOGJOLqDwEA8uVUvU&_nc_zt=14&_nc_ht=scontent-mad1-1.xx&_nc_gid=Srmkvq9GlIeOtnd0GDpLVA&_nc_ss=7b289&oh=00_AQC6x7FebWsdvTVd2WTXik82gabWPwTIgqcmEHjtOn9PRA&oe=6A6D9DBB",
    "photos": [
      "https://scontent-mad1-1.xx.fbcdn.net/v/t39.84726-6/749377945_1746854896315726_817991790771142418_n.jpg?stp=dst-jpg_p720x720_tt6&_nc_cat=100&ccb=1-7&_nc_sid=92e707&_nc_ohc=Td50J02FhxwQ7kNvwEMS5Gk&_nc_oc=Adq3GF3R5f05eu3AlZfXV5BYX7n-dl-fGhjd7L4VfCb2IZztMYgOGJOLqDwEA8uVUvU&_nc_zt=14&_nc_ht=scontent-mad1-1.xx&_nc_gid=Srmkvq9GlIeOtnd0GDpLVA&_nc_ss=7b289&oh=00_AQC6x7FebWsdvTVd2WTXik82gabWPwTIgqcmEHjtOn9PRA&oe=6A6D9DBB",
      "https://scontent-mad2-1.xx.fbcdn.net/v/t45.5328-4/750643688_1384573667068640_514500939676617077_n.jpg?stp=dst-jpg_p720x720_tt6&_nc_cat=111&ccb=1-7&_nc_sid=247b10&_nc_ohc=Aa-65J_vFfcQ7kNvwF56W3U&_nc_oc=AdqZo7FznGIikAd34m8FI2BzTOz3YUC3qQQ7lZPPYOm6lxpve9wXM1XMfZkSG1T1N-k&_nc_zt=23&_nc_ht=scontent-mad2-1.xx&_nc_gid=Srmkvq9GlIeOtnd0GDpLVA&_nc_ss=7b289&oh=00_AQADpKLF9okchpYthAq_g22eIr1EZlOHwgG-Ih5jzyIFyQ&oe=6A6D812F",
      "https://scontent-mad2-1.xx.fbcdn.net/v/t45.5328-4/750146978_1059729840108608_2219865786574902059_n.jpg?stp=dst-jpg_p720x720_tt6&_nc_cat=109&ccb=1-7&_nc_sid=247b10&_nc_ohc=Od7eQQlkVhIQ7kNvwGRxsbk&_nc_oc=AdqFpqYUQXur41TQG2apzKrDL1Lnw8X0iotSUeRWCLQ68cuWGvaUF7Mu9Ch_I1qHnJo&_nc_zt=23&_nc_ht=scontent-mad2-1.xx&_nc_gid=Srmkvq9GlIeOtnd0GDpLVA&_nc_ss=7b289&oh=00_AQApBoZAQ3QJWoCeL0zE2VgUqNONBN79IgUmmDTgELpcAQ&oe=6A6D971E"
    ],
    "createdAt": "2026-07-17T18:23:51+00:00"
  }
}

Billing metadata is returned in response headers: X-Captapi-Credits (credits charged), X-Captapi-Cache (hit or miss), and X-Captapi-Source. Failed requests (4xx/5xx) are never charged. See the full list of error codes in the error reference.

Response structure

A successful call returns success, cached, creditsUsed, and a data object with the following fields:

Top-level fields

  • platformPlatform identifier (e.g. youtube, instagram).
  • idStable platform ID for the item.
  • urlCanonical URL of the item.
  • titleTitle of the item.
  • descriptionDescription text.
  • pricePrice of the item.
  • priceFormattedFormatted price string.
  • currencyCurrency code.
  • conditionCondition. Example: "Used - like new".
  • locationLocation shown on the profile or item.
  • latitudeLatitude. Example: 38.888854980469.
  • longitudeLongitude. Example: -77.085571289062.
  • isSoldIs sold. Example: true.
  • isLiveWhether the account/channel is currently live.
  • deliveryTypesDelivery types (array).
  • imageImage URL.
  • photosPhoto URLs attached to the item.
  • createdAtCreation date (ISO 8601).

Parameters

NameTypeRequiredDescription
urlstringYesFacebook Marketplace item URL. The URL platform must match this endpoint's platform. Do not pass cross-platform URLs, e.g. YouTube to TikTok, Instagram to Facebook, LinkedIn to X/Twitter, or Pinterest to Rumble.
cachebooleanNoSet true to serve from the 24h response cache. Default false — always fetch fresh data.

Authentication: send your key as Authorization: Bearer capt_live_.... A typical call costs 2 credits. Pass cache=true for a free 24h cache hit; default is always fresh.

Using an AI agent? This endpoint is the MCP tool facebook_marketplace_item via @captapi/mcp. Set it up →

How it works

  1. 1. Sign up — get 100 free credits, no card required.
  2. 2. Create a key from your dashboard.
  3. 3. Send one request to /v1/facebook/marketplace-item and parse the JSON response.

Use cases

Analytics

Track views, likes, and engagement over time.

Competitor Monitoring

Benchmark the performance of other creators.

Dashboards

Power reporting and BI with real metadata.

Content Curation

Filter and rank videos by performance.

Frequently asked questions

What does the Facebook Marketplace Item API do?+

The Facebook Marketplace Item API lets you fetch full metadata and key stats from a public Facebook listing or product using one GET request to /v1/facebook/marketplace-item. It returns clean JSON — no OAuth or infrastructure setup required.

How many credits does the Facebook Marketplace Item API cost?+

Each successful call costs 2 credits. Pass cache=true to serve from the 24h shared cache (0 credits on hit); default is always fresh. Failed or empty results are never charged.

Do I need a Facebook API key or OAuth?+

No. A single Captapi key works across every platform Captapi supports — YouTube, TikTok, Instagram, Facebook, Twitter/X, Reddit, Threads, Bluesky, Pinterest, LinkedIn, Rumble, Spotify, Kwai, and more. We handle proxies, rate limits, retries, and authentication for you.

Is the Facebook Marketplace Item API suitable for production use?+

Yes. It is a stable REST endpoint with predictable JSON and automatic retries. Pass cache=true to serve from the 24h shared cache (0 credits on hit); default is always fresh. Use it for analytics, monitoring, and content automation.

More Facebook APIs

Ready to use the Facebook Marketplace Item API?

Sign up, grab your key, and make your first call in 60 seconds.