# ScopeAPI Facebook Post Data

> ScopeAPI Facebook Post Data 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 social intelligence data for a specific Facebook post by its post ID, including engagement metrics and content details.

## Facts

- Endpoint: GET https://scopeapipay.vercel.app/api/facebook/post/%7BpostId%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-post-data-ce38f539
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NgvftID8oTfWwHW-kbjLq

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-data-ce38f539
```

Example prompt: Can you pull the post data and engagement stats for Facebook post ID 1234567890123456 — I want to see how it's performing?

## When to prefer this

Use this endpoint when you need detailed social intelligence data on a specific Facebook post identified by its post ID, especially in marketing research, competitive analysis, or content performance tracking contexts. Prefer this over general social media APIs when you need pay-per-call pricing via USDC micropayments without subscription commitments.

## Known failure modes

- Invalid or non-existent post ID returns an error or empty data object
- Private or restricted posts may not return data
- Rate limiting or payment failure may block the request
- Malformed post ID format causes a 400 or similar error
- Post may have been deleted, resulting in a not-found response

## 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 data fields about the specified Facebook post, such as engagement metrics (likes, comments, shares), post content, and metadata, sourced from ScopeAPI's social 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": {
      "postId": {
       "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-data-ce38f539/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)
