# Facebook Marketplace Item API (https://www.socialcrawl.dev/platforms/facebook/marketplace-item) > Fetches a single Facebook Marketplace listing — title, description, price, location, condition, photos, seller, and availability flags. Pass either the numeric `id` or a full Marketplace `url`. TL;DR: `GET /v1/facebook/marketplace/item` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `id` | no | Facebook Marketplace item ID (numeric). | | `url` | no | Full URL of the Marketplace item. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/facebook/marketplace/item" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### What is the Facebook Marketplace scraper API? GET /v1/facebook/marketplace/item returns the full detail for one Marketplace listing. Anchor the call with either the item id or its url, and you get price, description, images, location, and seller info as clean JSON. It costs 1 credit. ### Do I pass the id or the url? Either one. The endpoint accepts id or url and you supply exactly one. If you already captured item ids from a listings search, pass id; if you only have the shared listing link, pass url. ### What fields does one item return? You get the listing title, price, full description, image gallery, location, listing date, and seller details. The field names match the rest of the SocialCrawl schema, so it slots into the same models as your other data. ### How does this pair with the listings search? Use /v1/facebook/marketplace/search to discover listings, then call this endpoint with each item id for the deep detail the search results do not include. It is the standard two-step pattern for price and deal monitoring. ### How much does one item cost? Each item lookup is 1 credit on the standard tier with no premium surcharge. New accounts start with 100 free credits and no card, so you can test the response shape before you commit. See the full Facebook API: https://www.socialcrawl.dev/platforms/facebook ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How do I scrape a single Facebook Marketplace listing with an API? - How do I get full details of a Facebook Marketplace item by id or url?