# RagRadar Grid — Facebook Group Posts

> RagRadar Grid — Facebook Group Posts is a paid API for AI agents from grid.ragradar.space, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-08).

Fetches posts from a specified Facebook group using social intelligence data aggregation.

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/facebook/group/%7BgroupId%7D/posts
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ragradar-grid-facebook-group-posts-85fb26da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gcPNAChFM6eOogX99wBdO

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 ragradar-grid-facebook-group-posts-85fb26da
```

Example prompt: Pull the latest posts from Facebook group 123456789 — I want to see what members are talking about in that community.

## When to prefer this

Use this endpoint when you need to programmatically retrieve posts from a Facebook group by group ID, especially for competitive intelligence, community monitoring, or social listening workflows. Prefer this over manual scraping or direct Facebook Graph API (which requires app approval) when you need quick, pay-per-call access without OAuth setup.

## Known failure modes

- Invalid or non-existent groupId returns empty data or error
- Private group access may result in empty or restricted response
- Rate limiting or payment failure returns 402 or 429 error
- Malformed groupId path parameter may return 400 bad request
- Facebook data unavailability may result in stale or empty 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

Returns a JSON object with a data field containing posts from the specified Facebook group, sourced via RagRadar Grid'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": {
      "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": "RagRadar Grid"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ragradar-grid-facebook-group-posts-85fb26da/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from grid.ragradar.space](https://www.zero.xyz/host/grid.ragradar.space/llms.txt)
