# ScopeAPI Facebook Page Intelligence

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

Fetches public intelligence data for a Facebook page by its page ID

## Facts

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

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-4ca12f6b
```

Example prompt: Can you pull up the ScopeAPI page intelligence report for the Facebook page with ID 'cocacola' and show me what public data is available on it?

## When to prefer this

Choose this endpoint when you need to retrieve public intelligence data for a specific Facebook page by its page ID, especially in automated agent workflows that support x402 USDC micropayments on Base. Prefer this over manual browsing or Facebook Graph API (which requires OAuth) when you need a pay-per-call, no-subscription model for social page intelligence.

## Known failure modes

- Invalid or non-existent pageId returns an error or empty data object
- Private or deleted Facebook pages may return no data
- Rate limits or payment failures (x402 micropayment not processed) result in 402 Payment Required
- Malformed pageId path parameter returns a 400 or error response
- Facebook anti-scraping measures may cause intermittent failures or stale data

## 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

A JSON object with a 'data' field containing public Facebook page intelligence (such as page name, follower counts, about info, category, and other metadata) sourced from ScopeAPI, plus a 'source' field confirming the data origin.

## 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-4ca12f6b/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)
