# ScopeAPI Facebook Marketplace Search

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

Searches Facebook Marketplace listings by keyword, returning product listings and e-commerce intelligence data via paid micropayment API.

## Facts

- Endpoint: GET https://scopeapipay.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-76f538e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eca82AmHbGsjZ0BKiHUKY

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-76f538e9
```

Example prompt: Search Facebook Marketplace for 'vintage leather couch' and show me what listings come up, including prices and seller info.

## When to prefer this

Use this endpoint when you need programmatic, pay-per-call access to Facebook Marketplace search results without managing Facebook credentials or scraping infrastructure. Prefer this over building your own scraper when you need occasional lookups at $0.75/call. Best for price research, inventory monitoring, or competitive intelligence on secondhand goods.

## Known failure modes

- Missing required 'q' query parameter returns an error or empty results
- Payment failure (402) if USDC micropayment not provided or insufficient
- Facebook Marketplace access blocked or rate-limited returning empty or error data
- Query returning zero results for niche or misspelled search terms
- Network timeout on the Vercel-hosted endpoint under load

## 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, sourced from ScopeAPI. Results likely include listing titles, prices, locations, and item details. The response schema is minimal and the exact shape of `data` depends on live results.

## 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-76f538e9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scopeapipay.vercel.app](https://www.zero.xyz/host/scopeapipay.vercel.app/llms.txt)
