# RagRadar Grid — Amazon Product Scraper

> RagRadar Grid — Amazon Product Scraper 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-14).

Scrapes Amazon product data from a given Amazon URL and returns structured e-commerce intelligence

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/amazon/scrape
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ragradar-grid-amazon-product-scraper-ce3fc6c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TK-h-cu90Ra3cb25G9FH2

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-amazon-product-scraper-ce3fc6c3
```

Example prompt: Can you pull all the product details — price, title, ratings, and description — from this Amazon listing? https://www.amazon.com/dp/B09XYZ1234

## When to prefer this

Choose this endpoint when you need to scrape structured product data from a specific Amazon product page URL and want to pay per-call via USDC micropayments (x402) rather than maintaining a scraping subscription. Ideal for on-demand Amazon product lookups, price checks, or competitive intelligence gathering without managing scraping infrastructure.

## Known failure modes

- Invalid or non-Amazon URL provided — returns error or empty data object
- Amazon page behind CAPTCHA or bot-detection — may return incomplete data
- URL points to a category or search page rather than a product listing — unexpected or empty result
- Network timeout reaching Amazon — request may fail or return partial data
- Payment not processed — 402 response requiring USDC payment on Base before data is returned

## 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 structured Amazon product data extracted from the provided URL, including fields like title, price, ratings, reviews, images, and other product metadata, sourced from RagRadar Grid.

## 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": {
      "url": {
       "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-amazon-product-scraper-ce3fc6c3/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)
