# RagRadar Grid — Facebook Page Search

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

Searches Facebook pages by keyword query, returning page intelligence data via paid REST API.

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/facebook/search/pages
- 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-search-5f85aa26
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rty4IiZIkeyQcfnCq5cie

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-search-5f85aa26
```

Example prompt: Search Facebook pages for 'organic coffee roasters' and show me the results — page names, details, whatever comes back.

## When to prefer this

Use this endpoint when you need to discover or enumerate Facebook pages matching a keyword or brand name, especially for competitive research, market intelligence, or social media auditing. Prefer this over manual Facebook search when you need programmatic access to page listings and are comfortable paying $0.50 USDC per call via x402 micropayments on Base.

## Known failure modes

- Missing required query parameter 'q' returns an error or empty results
- Payment failure via x402 micropayment returns HTTP 402 Payment Required
- Invalid or expired USDC payment on Base network blocks access
- Query returning no matching Facebook pages returns empty data object
- Rate limiting or quota exceeded returns an error response
- Facebook data unavailability or upstream scraping failure returns partial or null data

## 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 Facebook page search results matching the query, along with a source attribution field set to 'RagRadar Grid'. The data payload includes page-level metadata such as names, descriptions, and other available social intelligence fields.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "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-search-5f85aa26/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)
