# ScopeAPI Facebook Marketplace Search

> ScopeAPI Facebook Marketplace Search is a paid API for AI agents from scopepay.vercel.app, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-15).

Searches Facebook Marketplace listings by keyword query, returning e-commerce product data via pay-per-call micropayment.

## Facts

- Endpoint: GET https://scopepay.vercel.app/api/facebook/marketplace/search
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scopeapi-facebook-marketplace-search-d23bbd8d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ORbp9zoEdcn5KydBznnVN

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 scopeapi-facebook-marketplace-search-d23bbd8d
```

Example prompt: Can you search Facebook Marketplace for used MacBook Pro laptops and show me what listings are available right now?

## When to prefer this

Choose this endpoint when you need to programmatically search Facebook Marketplace listings by keyword for price comparison, market research, or secondhand goods discovery. Prefer this over Amazon product search endpoints when the user specifically wants peer-to-peer or local marketplace listings rather than retail inventory.

## Known failure modes

- Missing required 'q' query parameter returns an error or empty results
- Facebook Marketplace data unavailable or blocked returns empty data object
- Payment failure via x402 micropayment (insufficient USDC balance) blocks the request
- Rate limiting or quota exceeded on ScopeAPI side
- Stale or cached marketplace data may not reflect real-time listings

## How this service works

37 paid REST endpoints: Facebook social & ads intelligence, Amazon e-commerce data, job market intelligence. Pay per call via x402 micropayments (USDC on Base).

## Output

Returns a JSON object with a 'data' field containing Facebook Marketplace search results for the given query keyword, including listing details such as product names, prices, and seller information, sourced from ScopeAPI.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "source": "ScopeAPI"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scopeapi-facebook-marketplace-search-d23bbd8d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scopepay.vercel.app](https://www.zero.xyz/host/scopepay.vercel.app/llms.txt)
