# x402 Content Hub – Amazon Product Lookup

> x402 Content Hub – Amazon Product Lookup is a paid API for AI agents from x402-content-hub.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Fetches detailed Amazon product data by ASIN, paid via USDC on Base using the x402 protocol

## Facts

- Endpoint: POST https://x402-content-hub.vercel.app/api/amazon/product
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-content-hub-amazon-product-lookup-7c3a35fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CLw095MOn14jI91dDGmIi

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 x402-content-hub-amazon-product-lookup-7c3a35fb -d '<json body>'
```

Example prompt: Can you look up the Amazon product with ASIN B09G9FPHY6 and tell me its title, price, and whether it's currently in stock?

## When to prefer this

Use this endpoint when you need structured Amazon product data (price, title, description, ratings) for a specific ASIN and want to pay per-call with USDC on Base via the x402 protocol, without needing a full Amazon API partnership or subscription.

## Known failure modes

- Invalid or non-existent ASIN returns an error or empty data object
- Payment failure via x402/USDC results in 402 response and no data returned
- Upstream Amazon data unavailable causes partial or null response
- Rate limiting or quota exceeded on the underlying data provider
- Network timeout from the Vercel-hosted service

## How this service works

Amazon products, real-time news, image search, Medium articles, and Spotify data. Pay with USDC on Base.

## Output

Returns a data object containing structured Amazon product information for the given ASIN, likely including product title, price, description, images, ratings, and availability status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "asin"
 ],
 "properties": {
  "asin": {
   "type": "string",
   "description": "Amazon ASIN"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-content-hub-amazon-product-lookup-7c3a35fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-content-hub.vercel.app](https://www.zero.xyz/host/x402-content-hub.vercel.app/llms.txt)
