# ScopeAPI Facebook Group Posts

> ScopeAPI Facebook Group Posts 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 recent posts from a specified Facebook group using social intelligence data

## Facts

- Endpoint: GET https://scopeapipay.vercel.app/api/facebook/group/%7BgroupId%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-group-posts-c4ef018a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1CJmRMwnNLvXkj11eYbZ_

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-group-posts-c4ef018a
```

Example prompt: Pull the latest posts from the Facebook group with ID 123456789 so I can see what members have been discussing recently.

## When to prefer this

Use this endpoint when you need to programmatically extract posts from a specific Facebook group for social listening, market research, or content analysis. Best suited for agents that need per-call, on-demand access to Facebook group feeds without managing Facebook API credentials, and are willing to pay $0.50 USDC per call via x402 micropayments.

## Known failure modes

- Invalid or non-existent groupId returns empty data or error
- Private or restricted group that cannot be accessed returns an error or empty result
- Payment failure via x402/USDC micropayment causes 402 response and no data returned
- Rate limiting or quota exceeded returns an error response
- Malformed groupId path parameter causes a 400 or 404 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 with a 'data' field containing the posts from the specified Facebook group and a 'source' field set to 'ScopeAPI'. Post data may include post text, author info, timestamps, and engagement metrics.

## 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": {
      "groupId": {
       "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-group-posts-c4ef018a/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)
