Marketplace › Search
Returns Facebook Marketplace listings near a lat/lng, each with title, price, location, photo, delivery types, and sold or live flags.
Use it to find listings in an area; get lat and lng from marketplace/location/search, and de-duplicate by listing id since ordering can shift.
20 credits per call.
Re-running the exact same call within 1h is free.
Paginates by cursor — see Pagination.
Authorization
apiKey Your key from the dashboard. It starts with isk_.
In: header
Query Parameters
Search keyword (e.g., bike, couch).
Latitude of the search location.
Longitude of the search location.
Search radius in kilometers.
Minimum listing price.
Maximum listing price.
Number of listings to return per page.
Sort order for results.
Value in
- "suggested"
- "distance_ascend"
- "creation_time_descend"
- "price_ascend"
- "price_descend"
Delivery filter: local pickup only, shipping only, or all.
Value in
- "all"
- "local_pickup"
- "shipping"
Filter listings by item condition.
Value in
- "new"
- "used_like_new"
- "used_good"
- "used_fair"
Filter by listing recency (relative window or numeric day count).
Value in
- "all"
- "1"
- "7"
- "30"
- "last_24_hours"
- "last_7_days"
- "last_30_days"
Filter by listing status: available, sold, or all.
Value in
- "available"
- "sold"
- "all"
Opaque pagination cursor returned by the previous response: forward as-is.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/facebook/marketplace/search?query=string&lat=string&lng=string"{ "success": true, "platform": "instagram", "endpoint": "/v1/instagram/profile/posts", "data": { "items": [ "…" ], "dropped": 0 }, "pagination": { "next_cursor": "is2.eyJwIjoyfQ", "has_more": true, "page_size": 12 }, "credits_used": 20, "credits_remaining": 9980, "request_id": "req_1a2b3c4d5e6f", "cached": false, "idempotent_replay": false, "charge_reason": "miss", "free_call": false}Marketplace › Location › Search GET
Returns Facebook Marketplace locations and cities matching a search term, each with its lat and lng coordinates. Use it first to turn a place name into coordinates, then pass those to marketplace/search. **20 credits** per call. Re-running the exact same call within 1h is free.
Post › Comment › Replies GET
Returns the replies under a single Facebook comment, each with the author name, reply text, like count, and creation time. Use it after post/comments: pass that response's feedback_id and expansion_token, which are not the comment id. **Metered: 20–100 credits.** We reserve the ceiling when the call starts and charge what it actually used when it finishes. Re-running the exact same call within 6h is free. Paginates by `cursor` — see [Pagination](/docs/pagination).