# StableSocial: Facebook Marketplace Search

> StableSocial: Facebook Marketplace Search is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Search Facebook Marketplace listings by keyword and location with filtering by price, condition, date, and delivery method

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/facebook/marketplace/search
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-facebook-marketplace-search-006e6a4f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6rYc3zd4nwj2MdJKdu9Ty

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stablesocial-facebook-marketplace-search-006e6a4f -d '<json body>'
```

Example prompt: Search Facebook Marketplace for used road bikes within 30km of downtown Chicago (41.8781, -87.6298), return 10 listings sorted by price ascending, condition used_good or better, priced between $100 and $800, listed in the last 30 days.

## When to prefer this

Choose this endpoint when you need programmatic, no-auth access to Facebook Marketplace search results with fine-grained filtering by location radius, price, condition, date, and delivery method. Ideal for price research, inventory monitoring, lead generation for resellers, or building local commerce tools — without needing a Facebook account or API credentials. Prefer over scraping alternatives when you need pay-per-call pricing with no subscription commitment.

## Known failure modes

- No listings found for the given keyword and location combination returns an empty results array
- Invalid or expired pagination cursor may cause an error or reset to first page
- Overly restrictive filter combinations (tight price range + rare condition + small radius) may yield zero results
- Facebook rate-limiting or anti-scraping measures may cause intermittent failures or incomplete results
- Invalid lat/lng coordinates outside valid geographic range return an error
- Malformed query string (empty after minLength check) is rejected with a validation error

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

Returns a list of Facebook Marketplace listings matching the search criteria, each containing listing title, price, condition, location, listing date, seller info, delivery method, availability status, and a pagination cursor for retrieving subsequent pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number",
   "description": "Latitude for the search location"
  },
  "lng": {
   "type": "number",
   "description": "Longitude for the search location"
  },
  "count": {
   "type": "number",
   "description": "Number of listings to return"
  },
  "query": {
   "type": "string",
   "minLength": 1,
   "description": "Search keyword"
  },
  "cursor": {
   "type": "string",
   "description": "Opaque pagination cursor returned from the previous response. Pass it back as-is."
  },
  "sort_by": {
   "enum": [
    "suggested",
    "distance_ascend",
    "creation_time_descend",
    "price_ascend",
    "price_descend"
   ],
   "type": "string",
   "description": "Sort order"
  },
  "condition": {
   "enum": [
    "new",
    "used_like_new",
    "used_good",
    "used_fair"
   ],
   "type": "string",
   "description": "Condition filter"
  },
  "max_price": {
   "type": "number",
   "description": "Maximum listing price"
  },
  "min_price": {
   "type": "number",
   "description": "Minimum listing price"
  },
  "radius_km": {
   "type": "number",
   "description": "Search radius in kilometers"
  },
  "date_listed": {
   "enum": [
    "1",
    "7",
    "30",
    "all",
    "last_24_hours",
    "last_7_days",
    "last_30_days"
   ],
   "type": "string",
   "description": "Date listed filter"
  },
  "availability": {
   "enum": [
    "available",
    "sold",
    "all"
   ],
   "type": "string",
   "description": "Availability filter"
  },
  "delivery_method": {
   "enum": [
    "all",
    "local_pickup",
    "shipping"
   ],
   "type": "string",
   "description": "Delivery filter"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-facebook-marketplace-search-006e6a4f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
