# RagRadar Grid — Amazon Product Offers

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

Retrieves third-party seller offers and pricing data for an Amazon product by ASIN

## Facts

- Endpoint: GET https://grid.ragradar.space/api/grid/amazon/product/%7Basin%7D/offers
- 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-amazon-product-offers-8f13c55c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7P-bMpV30yezT4DGUKBvl

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-offers-8f13c55c
```

Example prompt: Can you pull all the seller offers and pricing data for Amazon product ASIN B09G9HD6PD so I can see which third-party sellers have it listed and at what prices?

## When to prefer this

Use this endpoint when you need real-time Amazon marketplace offer and pricing intelligence for a specific product identified by its ASIN — particularly useful for price comparison tools, competitive pricing analysis, reseller research, or e-commerce monitoring workflows that require structured seller offer data via a pay-per-call REST API with USDC micropayments.

## Known failure modes

- Invalid or non-existent ASIN returns empty data or error
- Payment failure via x402 micropayment results in 402 response
- Rate limiting or quota exceeded returns 429 or error response
- Product has no third-party offers returns empty offers array
- Network timeout or upstream Amazon data unavailability

## 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 seller offer data for the specified Amazon product ASIN, including pricing from multiple marketplace sellers, sourced and labeled as RagRadar Grid data.

## 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": {
      "asin": {
       "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-offers-8f13c55c/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)
