# ScopeAPI Facebook Page Posts

> ScopeAPI Facebook Page Posts 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 recent posts from a specific Facebook page by its page ID

## Facts

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

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-posts-18968129
```

Example prompt: Pull the latest posts from the Facebook page with ID 123456789 so I can see what they've been publishing recently.

## When to prefer this

Choose this endpoint when you need to programmatically retrieve Facebook page posts without direct Facebook Graph API access or developer credentials, and are willing to pay per call via USDC micropayments. Ideal for competitive intelligence, brand monitoring, or social media research workflows that need Facebook post data on demand.

## Known failure modes

- Invalid or non-existent pageId returns empty data or error object
- Page is private or restricted — no posts returned
- Payment failure (insufficient USDC balance) blocks the request with HTTP 402
- Rate limits or upstream Facebook data unavailability cause partial or empty responses
- Malformed pageId parameter results in a bad request error

## 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 containing post data from the specified Facebook page, including post content, metadata, and engagement signals, sourced via ScopeAPI's paid Facebook intelligence layer.

## 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-posts-18968129/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)
