# ScopeAPI Facebook Page Intelligence

> ScopeAPI Facebook Page Intelligence 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).

Retrieves public intelligence data for a Facebook page by its page ID, including social metrics and related information.

## Facts

- Endpoint: GET https://scopepay.vercel.app/api/facebook/page/%7BpageId%7D
- 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-intelligence-a418da97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l7lHQ9dium5ZBstji8zOT

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-intelligence-a418da97
```

Example prompt: Pull the public page data for the Facebook page with ID 123456789 — I want to see their social stats and page details.

## When to prefer this

Use this endpoint when you need to programmatically retrieve public Facebook page data for a specific page by ID, especially within automated agent workflows that support x402 USDC micropayments on Base. Prefer this over scraping or unofficial APIs when you need structured, reliable data with a clear pay-per-call cost model.

## Known failure modes

- Invalid or non-existent pageId returns an error or empty data object
- Payment failure (x402 USDC micropayment not completed) returns 402 Payment Required
- Rate limiting or quota exceeded returns 429
- Private or restricted Facebook pages may return incomplete or no data
- Malformed pageId path parameter returns 400 Bad Request

## 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 intelligence (social metrics, profile info, engagement indicators) and a 'source' field identifying 'ScopeAPI'. The exact shape of 'data' depends on the underlying Facebook data available for that page.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "pageId": {
       "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-intelligence-a418da97/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)
