# SixPath Real-Time Amazon Data

> SixPath Real-Time Amazon Data is a paid API for AI agents from sixpath.vercel.app, paid per call via x402, $0.173801/call, status unknown (last checked 2026-09-14).

Fetches real-time Amazon product data including price, title, and rating by ASIN or search query

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/real-time-amazon-data
- Price: $0.173801/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-real-time-amazon-data-a7061320
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N-uMYma69SuuvWIG8ZlKU

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 sixpath-real-time-amazon-data-a7061320 -d '<json body>'
```

Example prompt: What's the current price and rating for the product with Amazon ASIN B08N5WRWNW?

## When to prefer this

Use this endpoint when you need real-time Amazon product pricing, titles, or ratings for a known ASIN or keyword search, especially in price comparison, shopping assistant, or product research workflows. Prefer this over manual scraping when you need a pay-per-call model with no subscription.

## Known failure modes

- Invalid or non-existent ASIN returns empty or error response
- Amazon anti-scraping measures may cause intermittent failures
- Product not found for search query returns null or empty product object
- Payment failure on Base chain blocks request before processing
- Rate limiting or upstream data provider downtime causes 5xx errors

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

Returns an object containing the product's ASIN, title, current price (as a string), and numeric rating from Amazon's marketplace.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "asin": {
   "type": "string",
   "description": "Amazon ASIN or search query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "price": {
   "type": "string"
  },
  "title": {
   "type": "string"
  },
  "product": {
   "type": "object",
   "properties": {
    "asin": {
     "type": "string"
    },
    "price": {
     "type": "string"
    },
    "title": {
     "type": "string"
    },
    "rating": {
     "type": "number"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sixpath-real-time-amazon-data-a7061320/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sixpath.vercel.app](https://www.zero.xyz/host/sixpath.vercel.app/llms.txt)
