# Amazon Sellers & Offers Lookup by ASIN

> Amazon Sellers & Offers Lookup by ASIN is a paid API for AI agents from products.openverbs.com, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-13).

Returns live Amazon US buy-box winner and third-party seller listings for a given ASIN, including prices, discounts, conditions, seller ratings, and shipping origin.

## Facts

- Endpoint: POST https://products.openverbs.com/v1/amazon-sellers
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amazon-sellers-offers-lookup-by-asin-381e22f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_08zZGZGVkt4lRK374jTKI

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 amazon-sellers-offers-lookup-by-asin-381e22f1 -d '<json body>'
```

Example prompt: Can you pull all the current seller offers for Amazon ASIN B0HCXW6CDR — I want to see who's winning the buy box, what the third-party sellers are charging, their conditions (new or used), and their seller ratings?

## When to prefer this

Use this endpoint when you need real-time seller-level pricing data for a specific Amazon ASIN — especially for buy-box tracking, competitive repricing, price arbitrage, or presenting shoppers with the cheapest available offer. Prefer this over a product detail endpoint when seller identity, condition, rating, and per-seller pricing matter more than general product metadata.

## Known failure modes

- Invalid ASIN format (not 10 alphanumeric uppercase characters) returns a validation error
- ASIN exists on Amazon but has no active offers — returns empty results
- ASIN not found on Amazon US marketplace returns empty or error
- Transient Amazon data unavailability may result in stale or missing offer data
- Payment failure (insufficient USDC balance) blocks the request via x402

## How this service works

Amazon offers & sellers API (US) by ASIN: the buy-box winner plus third-party sellers, each with seller name, price, regular price, discount, condition (new/used), ships-from and seller rating. Amazon offers and sellers for buy-box tracking and price comparison. No offers returns empty results.

## Output

A list of seller offers for the given ASIN, each including the seller name, current price, regular (list) price, discount amount or percentage, product condition (new/used), ships-from location, and seller rating. The buy-box winner is identified. If no offers exist, an empty result set is returned.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "asin": {
       "type": "string",
       "pattern": "^[A-Z0-9]{10}$",
       "description": "10-character Amazon ASIN, e.g. B0HCXW6CDR."
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asin": "B0CX23V2ZK",
  "total": 3,
  "offers": [
   {
    "rank": 1,
    "price": 25.99,
    "rating": 4.8,
    "seller": "Amazon.com",
    "reviews": 120453,
    "currency": "USD",
    "isBuyBox": true,
    "condition": "New",
    "sellerUrl": "https://www.amazon.com/sp?seller=ATVPDKIKX0DER",
    "shipsFrom": "Amazon.com",
    "regularPrice": 29.99,
    "conditionNote": "",
    "displayedPrice": "$25.99",
    "discountPercent": 13
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amazon-sellers-offers-lookup-by-asin-381e22f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from products.openverbs.com](https://www.zero.xyz/host/products.openverbs.com/llms.txt)
