# ScopeAPI Facebook Post Search

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

Searches Facebook posts by keyword query and returns matching social post data via paid micropayment REST API.

## Facts

- Endpoint: GET https://scopeapipay.vercel.app/api/facebook/search/posts
- Price: $0.5/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-post-search-c8d0133a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xca_Byy1_tsw4Nxa0mVYL

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-post-search-c8d0133a
```

Example prompt: Search Facebook posts about 'electric vehicles' and show me what people are publicly saying about it right now.

## When to prefer this

Use this endpoint when you need to search and retrieve public Facebook post data by keyword for social listening, market research, brand monitoring, or competitive intelligence. Prefer this over generic web search when Facebook-specific social content is explicitly needed and you are prepared to pay per call via USDC micropayment.

## Known failure modes

- Missing or empty q parameter returns no results or an error
- Payment not completed (402 response) blocks data access
- Rate limiting if too many calls are made in quick succession
- Facebook data unavailability or access restrictions may return empty data
- Invalid or overly broad queries may return generic or low-quality results

## 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 matching Facebook post results and a source field attributed to ScopeAPI. The exact structure of the post data (text, metadata, engagement) depends on available fields from the underlying source.

## 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-post-search-c8d0133a/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)
