# OpenWebNinja Amazon Product Seller Offers

> OpenWebNinja Amazon Product Seller Offers is a paid API for AI agents from openwebninja-x402.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches all seller offers for an Amazon product identified by ASIN, across multiple supported country marketplaces.

## Facts

- Endpoint: GET https://openwebninja-x402.vercel.app/api/amazon/product-offers
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openwebninja-amazon-product-seller-offers-8080da4f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UkxeDnZLYSIMTr6smoKvr

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 openwebninja-amazon-product-seller-offers-8080da4f
```

Example prompt: Can you pull up all the seller offers for Amazon ASIN B09G9HD6PD on the US marketplace so I can compare prices and sellers?

## When to prefer this

Use this endpoint when you need to retrieve all available seller offers for a specific Amazon product by ASIN, particularly for price comparison, seller research, or finding the best deal across multiple sellers. Prefer this over the product details endpoint when you specifically need seller-level offer data rather than general product metadata.

## Known failure modes

- Invalid or non-existent ASIN returns empty results or error
- Unsupported country code returns validation error
- Missing required 'asin' parameter returns 400 bad request
- Payment failure via x402 protocol returns 402 Payment Required
- Amazon marketplace temporarily unavailable causes timeout or 503
- Product has no third-party seller offers returns empty offer list

## How this service works

Fetch Amazon product seller offers by ASIN.

## Output

A list of seller offers for the specified Amazon product ASIN, including seller names, prices, conditions, shipping options, and availability across the specified country marketplace.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "asin"
     ],
     "properties": {
      "asin": {
       "type": "string",
       "minLength": 1
      },
      "country": {
       "enum": [
        "US",
        "AU",
        "BR",
        "CA",
        "CN",
        "FR",
        "DE",
        "IN",
        "IT",
        "MX",
        "NL",
        "SG",
        "ES",
        "TR",
        "AE",
        "GB",
        "JP",
        "SA",
        "PL",
        "SE",
        "BE",
        "EG",
        "ZA",
        "IE"
       ],
       "type": "string"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openwebninja-amazon-product-seller-offers-8080da4f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from openwebninja-x402.vercel.app](https://www.zero.xyz/host/openwebninja-x402.vercel.app/llms.txt)
