Skip to content

Marketplace Item

GET /v1/facebook/marketplace/item

Fetches details for a Facebook Marketplace item by item id or Marketplace item URL, including title, description, price, location, condition, photos, seller, and availability flags.

Authentication

All requests require the x-api-key header. Get your key at scrapecreators.com.

Query Parameters

NameTypeRequiredDescriptionExample
idstringnoFacebook Marketplace item id1656586118821988
urlstringnoFacebook Marketplace item URLhttps://www.facebook.com/marketplace/item/1656586118821988/

Example Request

curl

bash
curl 'https://api.scrapecreators.com/v1/facebook/marketplace/item' \
  -H 'x-api-key: $SCRAPECREATORS_API_KEY'

Node / TypeScript

js
const params = new URLSearchParams({  });
const res = await fetch(`https://api.scrapecreators.com/v1/facebook/marketplace/item?${params}`, {
  headers: { 'x-api-key': process.env.SCRAPECREATORS_API_KEY }
});
const data = await res.json();
console.log(data);

Python

python
import os, requests
r = requests.get(
    'https://api.scrapecreators.com/v1/facebook/marketplace/item',
    headers={'x-api-key': os.environ['SCRAPECREATORS_API_KEY']},
    params={},
)
r.raise_for_status()
print(r.json())

CLI

bash
scrapecreators facebook-marketplace marketplace-item --help

Example Response

json
{
  "success": true,
  "credits_remaining": 49997831215,
  "id": "1656586118821988",
  "url": "https://www.facebook.com/marketplace/item/1656586118821988/",
  "title": "Specialized Hardrock GSX - Super Clean Vintage Restomod - INCLUDES FREE TUNE UP",
  "description": "Was going to hang on to this one bc I absolutely love how it looks, but the 20” frame is just bit too large for me. Riders over 6’ would be comfy on this one. Currently in a 3x7 set up with an XT derailleur at the rear. Looks great in person. Come ride it!  These never last long. \n\nCASH ONLY, PLEASE. NEAR 183/BRAKER.  \n\n$380 OBO. \n\nKey points:\n\n- Maxxis DTH tires (26”)\n- Shimano Deore XT rear derailleur \n- Shimano front derailleur\n- vintage Specialized steel frame (20”)\n- vintage Sakae triple crankset (170mm)\n- vintage Sakae SR Custom handlebar\n- vintage Suntour stem shifter\n- vintage Shimano brakes\n- Specialized Avatar 143 saddle\n- new chain\n- fresh cables\n- fresh housing\n- fresh grease and lube\n- fresh lube in cable housings\n- fresh handlebar tape\n- drive train cleaned and lubed\n- derailluers adjusted and fine tuned\n- brakes adjusted and fine tuned\n- deep cleaning/detail\n- frame polished\n- frame waxed\n- INCLUDES ONE FREE TUNE UP\n",
  "creation_time": "2026-05-15T16:57:39.000Z",
  "location_text": "Austin, TX",
  "location": {
    "latitude": 30.401916503906,
    "longitude": -97.761840820312
  },
  "price": {
    "formatted_amount_zeros_stripped": "$380",
    "amount_with_offset_in_currency": 38000,
    "amount": 380,
    "currency": "USD"
  },
  "strikethrough_price": null,
  "category_id": "1658310421102081",
  "attributes": [
    {
      "attribute_name": "Condition",
      "value": "used_good",
      "label": "Used - Good"
    }
  ],
  "photos": [
    {
      "id": "2810586442651711",
      "url": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.84726-6/701290950_2810586459318376_3780262866029042186_n.jpg?stp=dst-jpg_s960x960_tt6&_nc_cat=111&ccb=1-7&_nc_sid=92e707&_nc_ohc=ROKufyRtfXsQ7kNvwGcXi_k&_nc_oc=Adr-1I--Ur89Efziu4LbR01Gx7vv7Ky2iQDaspacjs93wQf7O21Zucf8Bqk7JnAV9us&_nc_zt=14&_nc_ht=scontent-bos5-1.xx&_nc_gid=I5XX4xnX65bx3IZ1QXZ0oQ&_nc_ss=7e289&oh=00_Af4qBsmM1VtSMQvu_Uq9lP5B3sZDkmH3d7tcnkb4qJrfvQ&oe=6A0D43D6",
      "width": 960,
      "height": 720,
      "accessibility_caption": "No photo description available."
    }
  ],
  "is_hidden": false,
  "is_live": true,
  "is_pending": false,
  "is_sold": false,
  "is_viewer_seller": false,
  "is_shipping_offered": false,
  "is_buy_now_enabled": false,
  "messaging_enabled": true,
  "delivery_types": [
    "IN_PERSON"
  ],
  "share_uri": "https://www.facebook.com/marketplace/item/1656586118821988/",
  "seller": null
}

Credits

Most ScrapeCreators endpoints consume 1 credit per successful response. Some heavier endpoints (transcripts, AI-driven enrichment, ad detail lookups) may cost more. Check GET /v1/credit-balance for your remaining balance.

Errors

StatusMeaningAction
200Success.Use the JSON payload.
400Invalid or missing parameter.Verify required parameters and value format.
401Missing or invalid x-api-key.Pass a valid API key in the header.
402Out of credits.Top up at scrapecreators.com or wait for plan reset.
404Resource not found or private.Confirm the handle, URL, or id and that the resource is public.
429Rate limited.Backoff and retry with exponential delay.
500Server error or upstream platform failure.Retry with backoff; report persistent errors to support.