# RagRadar Grid — Amazon Product Search

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

Searches Amazon product listings and returns e-commerce data via a paid REST API using x402 micropayments.

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/amazon/search
- Price: $0.5/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-search-3e2fd9d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oo8e0K9AcWMJM_ICIMkC8

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-search-3e2fd9d8
```

Example prompt: Search Amazon for 'wireless noise-cancelling headphones' and show me what products come up — prices, titles, and anything else available.

## When to prefer this

Use this endpoint when you need programmatic access to Amazon product search results and are comfortable paying $0.50 USDC per call via x402 micropayments on Base. Prefer this over manual scraping or other Amazon data providers when you need quick keyword-based product lookups as part of an automated agent workflow.

## Known failure modes

- Missing required 'q' query parameter — returns an error or empty results
- Payment failure or insufficient USDC balance — x402 payment required before data is returned
- Query yields no Amazon results — returns empty data object
- Rate limiting or quota exceeded — endpoint may return an error
- Amazon data unavailable or scraping blocked — incomplete or stale results

## 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

A JSON object with a 'data' field containing Amazon product search results (listings, titles, prices, etc.) and a 'source' field identifying 'RagRadar Grid'. The exact structure of product data depends on the search query.

## 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-amazon-product-search-3e2fd9d8/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)
