# RagRadar Grid — Facebook Ads by Page ID

> RagRadar Grid — Facebook Ads by Page ID is a paid API for AI agents from grid.ragradar.space, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-15).

Retrieves Facebook ads intelligence data for a specific Facebook page by its page ID

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/facebook/ads/page/%7BpageId%7D
- Price: $0.75/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-ads-by-page-id-357ad32a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZazWgYqXKuLrus9SI8uwx

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-ads-by-page-id-357ad32a
```

Example prompt: Can you pull the Facebook ads intelligence for the page with ID 123456789 — I want to see what ads they're currently running on RagRadar Grid?

## When to prefer this

Use this endpoint when you need Facebook ads intelligence for a specific known page ID and are willing to pay $0.75 USDC per call via x402 micropayments. Prefer this over scraping or manual research when you need structured, on-demand Facebook ad data for competitive analysis, brand monitoring, or marketing research.

## Known failure modes

- Invalid or non-existent pageId returns empty data or error
- Payment failure via x402/USDC results in 402 response and no data returned
- Rate limiting if too many calls are made in quick succession
- Facebook page has no active or historical ads, returning empty data object
- Malformed pageId 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 Facebook ads data for the specified page, sourced from RagRadar Grid's multi-source intelligence layer. The response includes ad-level details under a 'data' key and a 'source' field confirming the RagRadar Grid origin.

## 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-ads-by-page-id-357ad32a/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)
