# ScopeAPI Facebook Page Search

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

Search for Facebook pages by keyword query, returning page data via a paid REST endpoint

## Facts

- Endpoint: GET https://scopepay.vercel.app/api/facebook/search/pages
- 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-page-search-d375d266
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oHaXn1nzkI4Oa2QbHj79c

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-page-search-d375d266
```

Example prompt: Search Facebook pages for 'Nike' and show me what pages come up — I want to see what official or major brand pages exist for that keyword.

## When to prefer this

Use this endpoint when you need to search and discover Facebook pages by keyword for social intelligence, competitor research, brand monitoring, or market analysis without using the official Facebook API directly. Best suited for agents that need programmatic access to Facebook page discovery and can handle x402 micropayments in USDC on Base.

## Known failure modes

- Missing or empty query parameter q returns no results or an error
- Invalid or malformed query string causes a 400-level response
- Payment failure via x402/USDC results in a 402 Payment Required response blocking access
- Facebook data source unavailability may return empty data or partial results
- Rate limiting or quota exhaustion may block repeated calls

## 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 page results matching the search query, along with a source field indicating 'ScopeAPI'. The data includes page-level information for pages matching the given keyword.

## 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-page-search-d375d266/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)
