# ScopeAPI Amazon Product Search

> ScopeAPI Amazon Product Search is a paid API for AI agents from scopeapipay.vercel.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Search Amazon's product catalog and retrieve e-commerce data including listings, prices, and product details via a paid REST endpoint.

## Facts

- Endpoint: GET https://scopeapipay.vercel.app/api/amazon/search
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scopeapi-amazon-product-search-a0c26355
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ia_9W6mJ79PdvrzqQMYng

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 scopeapi-amazon-product-search-a0c26355
```

Example prompt: Search Amazon for 'noise cancelling headphones under $100' and show me the top product listings with their prices and titles.

## When to prefer this

Use this endpoint when you need programmatic access to Amazon product search results without scraping — ideal for price comparison, product research, competitive intelligence, or building e-commerce tools. Prefer this over manual browsing when an AI agent needs structured product data from Amazon at scale, paying per-call via USDC micropayments.

## Known failure modes

- Missing required 'q' query parameter returns an error
- Payment failure (insufficient USDC balance) returns HTTP 402
- Empty or malformed search query yields no results
- Rate limits or upstream Amazon data unavailability may cause timeouts
- Invalid or unsupported query strings may return empty data objects

## How this service works

37 paid REST endpoints: Facebook social & ads intelligence, Amazon e-commerce data, job market intelligence. Pay per call via x402 micropayments (USDC on Base).

## Output

Returns a JSON object containing Amazon search results data — typically product listings including titles, prices, ASINs, and other product metadata — sourced from ScopeAPI's Amazon data layer.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "source": "ScopeAPI"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scopeapi-amazon-product-search-a0c26355/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scopeapipay.vercel.app](https://www.zero.xyz/host/scopeapipay.vercel.app/llms.txt)
