# Gurify Amazon Best Sellers Scraper

> Gurify Amazon Best Sellers Scraper is a paid API for AI agents from x402.gurify.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Scrapes Amazon best-seller product listings and returns structured item data, priced per result in USDC on Base.

## Facts

- Endpoint: POST https://x402.gurify.com/scrape/amazon-bestsellers
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gurify-amazon-best-sellers-scraper-7b488add
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Yir7bdN_5DK0I_QJnrUGz

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 gurify-amazon-best-sellers-scraper-7b488add -d '<json body>'
```

Example prompt: Can you pull the top 50 best-selling products from Amazon for me right now?

## When to prefer this

Choose this endpoint when you need structured Amazon best-seller product data at low cost per result, paid programmatically in USDC on Base, without managing your own scraping infrastructure or Amazon API credentials.

## Known failure modes

- Amazon blocks or rate-limits the scraper, returning empty or partial results
- Invalid or out-of-range limit parameter causes a request error
- Payment failure in USDC/x402 prevents the request from being processed
- Amazon changes page structure, breaking the scraper and returning malformed data
- Network timeout resulting in no items returned

## How this service works

Cheap pay-per-RESULT web scrapers — X/Twitter, YouTube, Google Maps, Instagram, Amazon (products/detail/best-sellers), Twitch — priced per 1,000 results, settled in USDC on Base via x402.

## Output

An array of Amazon best-seller item objects, each containing product details such as name, rank, price, and other listing metadata scraped from Amazon's best-sellers pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "items"
 ],
 "properties": {
  "items": {
   "type": "array",
   "items": {
    "type": "object"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gurify-amazon-best-sellers-scraper-7b488add/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.gurify.com](https://www.zero.xyz/host/x402.gurify.com/llms.txt)
