# RagRadar Grid — Facebook Post Comments

> RagRadar Grid — Facebook Post Comments 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 comments on a specific Facebook post by post ID, returning social engagement data via micropayment-gated REST API.

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/facebook/post/%7BpostId%7D/comments
- 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-post-comments-a9854509
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uyCiT8EcZSzymNVqAl-Pw

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-post-comments-a9854509
```

Example prompt: Pull all the comments from Facebook post ID 1234567890 so I can see what people are saying about it.

## When to prefer this

Use this endpoint when you need to programmatically retrieve comments from a specific Facebook post and are willing to pay $0.50 USDC per call. Best suited for social listening, sentiment analysis pipelines, competitive intelligence, or brand monitoring workflows that require structured comment data from public Facebook posts without building a direct Facebook API integration.

## Known failure modes

- Invalid or non-existent postId returns empty data or error response
- Private or restricted Facebook post returns no accessible comment data
- Payment failure (x402 USDC micropayment not processed) blocks the request
- Rate limiting or quota exhaustion on the underlying data source
- Malformed postId 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

Returns a JSON object with a data field containing the comments associated with the specified Facebook post, sourced via the RagRadar Grid intelligence layer. Comment content, authors, and engagement metadata are expected within the data payload.

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

## More

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