# RagRadar Grid — Amazon Seller Products Lookup

> RagRadar Grid — Amazon Seller Products Lookup 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-08).

Retrieves the product listings associated with a specific Amazon seller by their seller ID

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/amazon/seller/%7BsellerId%7D/products
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ragradar-grid-amazon-seller-products-lookup-95a48b6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wZa32y9UzrOVf2iI4Qmie

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-seller-products-lookup-95a48b6f
```

Example prompt: Can you pull up all the products listed by Amazon seller A2XYZEXAMPLE123 — I'm doing competitive research and want to see their full catalog on RagRadar Grid.

## When to prefer this

Use this endpoint when you need to enumerate the product catalog of a known Amazon seller by their seller ID, particularly for competitive intelligence, market research, or supplier analysis. Prefer this over scraping Amazon directly or using general search APIs when you need structured, pay-per-call data without rate-limit concerns tied to your own Amazon credentials.

## Known failure modes

- Invalid or non-existent seller ID returns empty data or error object
- Seller has no active listings — returns empty product array
- Rate limiting or payment failure if USDC micropayment (x402) is not processed
- Malformed seller ID format causes 400-level error
- Upstream Amazon data unavailability may result in stale or missing 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 containing product data associated with the specified Amazon seller, including product listings and inventory details, sourced from RagRadar Grid's Amazon e-commerce intelligence layer.

## 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": {
      "sellerId": {
       "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-seller-products-lookup-95a48b6f/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)
