# ScopeAPI Amazon Product Lookup

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

Fetches product data from Amazon by ASIN via a pay-per-call REST API using USDC micropayments

## Facts

- Endpoint: GET https://scopepay.vercel.app/api/amazon/product/%7Basin%7D
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scopeapi-amazon-product-lookup-c90cbbbf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0IvvBsVLtKZNi_bkFbEW1

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-lookup-c90cbbbf
```

Example prompt: Can you pull the product details for Amazon ASIN B08N5WRWNW — I need the title, price, and any ratings info available?

## When to prefer this

Use this endpoint when you need structured Amazon product data by ASIN and want to pay per-call with USDC micropayments rather than maintaining a bulk scraping subscription. Ideal for agents doing ad-hoc product lookups, price checks, or e-commerce research without a long-term Amazon data contract.

## Known failure modes

- Invalid or non-existent ASIN returns empty data or error
- Payment failure (insufficient USDC balance) results in 402 response blocking the call
- Rate limiting or provider-side scraping blocks may return incomplete data
- Malformed ASIN path parameter may cause a 400 or 404 response
- Amazon listing removed or unavailable returns empty product data

## 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 with product data sourced from Amazon for the given ASIN, including fields like title, price, ratings, and other listing details wrapped in a `data` object attributed to ScopeAPI.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "asin": {
       "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-lookup-c90cbbbf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scopepay.vercel.app](https://www.zero.xyz/host/scopepay.vercel.app/llms.txt)
