# OpenVerbs Amazon Product Detail

> OpenVerbs Amazon Product Detail 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-14).

Fetches live Amazon US product details for a given ASIN, including title, price, rating, reviews, availability, and more

## Facts

- Endpoint: POST https://products.openverbs.com/v1/amazon-product
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openverbs-amazon-product-detail-0472e0b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YKl5PP5ByTQtwzxH1g0ii

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 openverbs-amazon-product-detail-0472e0b7 -d '<json body>'
```

Example prompt: Can you pull up the current details for Amazon ASIN B0HCXW6CDR — I need the title, price, star rating, and whether it's in stock right now?

## When to prefer this

Choose this endpoint when you need live, real-time Amazon US product data for a specific ASIN including pricing, availability, ratings, and descriptions. It is ideal for price monitoring agents, catalog enrichment pipelines, shopping assistants, and competitive research tools where freshness of Amazon data matters. Prefer this over static or cached product databases when current price and availability are critical.

## Known failure modes

- Unknown or invalid ASIN returns found=false with no product data
- ASIN format mismatch (not exactly 10 uppercase alphanumeric characters) triggers input validation error
- Amazon product delisted or region-restricted may return found=false
- Intermittent Amazon data unavailability may cause empty or partial fields
- Payment failure via x402 protocol results in 402 response before any data is returned

## How this service works

Amazon product detail API (US) by ASIN - Amazon product data for one ASIN: title, product URL, image, price range, discount, currency, star rating, review count, category path, availability and description. Amazon prices and product-detail lookup. Unknown ASIN returns found=false.

## Output

Returns a structured object with found (boolean), and if found: product title, Amazon product URL, main image URL, price range (min/max), discount amount or percentage, currency code, average star rating, total review count, hierarchical category path, availability status, and product description text. If the ASIN is unknown or invalid, returns found=false.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "asin": {
       "type": "string",
       "pattern": "^[A-Z0-9]{10}$",
       "description": "10-character Amazon ASIN, e.g. B0HCXW6CDR."
      }
     },
     "additionalProperties": false
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://www.amazon.com/dp/B0CX23V2ZK",
  "asin": "B0CX23V2ZK",
  "found": true,
  "image": "https://m.media-amazon.com/images/I/61abcd1234.jpg",
  "title": "Anker USB-C Charger, 40W Dual Port Fast Charging Block",
  "rating": 4.7,
  "details": "Compatible with iPhone, Samsung Galaxy, iPad and USB-C laptops.",
  "priceTo": 25.99,
  "reviews": 18432,
  "currency": "USD",
  "priceFrom": 25.99,
  "categories": [
   "Electronics",
   "Accessories & Supplies",
   "Chargers & Adapters"
  ],
  "parentAsin": "B0CX23PRNT",
  "description": "Dual-port 40W USB-C charger with PowerIQ for fast, safe charging of phones and tablets.",
  "isAvailable": true,
  "isAmazonChoice": true,
  "discountPercent": 13
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openverbs-amazon-product-detail-0472e0b7/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)
