# GoCreative Amazon Product Scraper

> GoCreative Amazon Product Scraper is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-09).

Scrapes Amazon product data for a given product identifier or search query, returning structured product information

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/scrape/amazon/%7Barg%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-amazon-product-scraper-234836ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VMZhDOQ4bupLnFYLgP27P

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 gocreative-amazon-product-scraper-234836ac
```

Example prompt: Can you scrape the Amazon listing for ASIN B08N5WRWNW and pull back the product title, price, and customer rating?

## When to prefer this

Use this endpoint when you need real-time Amazon product data — prices, ratings, titles, descriptions — without managing your own scraping infrastructure or API keys. Ideal for price comparison, product research, or enriching a product catalog with live Amazon data. At $0.05 USDC per call via x402, it suits pay-per-use agent workflows where signup friction must be eliminated.

## Known failure modes

- Invalid or non-existent ASIN returns empty or error response
- Amazon anti-scraping measures may cause intermittent failures
- Product listing removed or unavailable returns 404-equivalent data
- Payment failure via x402 returns 402 before scrape is attempted
- Rate limiting or timeout if Amazon throttles the request

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Structured product data extracted from the Amazon listing, including title, price, description, ratings, availability, and other product attributes depending on the listing.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-amazon-product-scraper-234836ac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
