# RagRadar Grid — Facebook Page Posts

> RagRadar Grid — Facebook Page 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-15).

Fetches recent posts from a specific Facebook page using multi-source social intelligence.

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/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/ragradar-grid-facebook-page-posts-d2d168ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TGysukgBOwYF-eIpHHpjW

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-page-posts-d2d168ae
```

Example prompt: Can you pull the recent posts from the Facebook page with ID '123456789' so I can see what they've been sharing lately?

## When to prefer this

Choose this endpoint when you need to programmatically retrieve posts from a specific Facebook page without direct Facebook API credentials, paying per-call via USDC micropayments. It is especially useful for competitive intelligence, brand monitoring, or social media research where you need Facebook page post data on demand.

## Known failure modes

- Invalid or non-existent pageId returns an error or empty data object
- Private or restricted Facebook pages may return no accessible data
- Payment failure via x402/USDC may block the request before data is returned
- Rate limiting or quota exhaustion may result in a 429 or similar error
- Stale or unavailable upstream data may result in incomplete post sets

## 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 containing post data fetched from the specified Facebook page, sourced via RagRadar Grid's multi-source intelligence layer. The response includes a data object with post content and metadata, along with a source attribution field.

## 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": "RagRadar Grid"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ragradar-grid-facebook-page-posts-d2d168ae/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)
