# ScopeAPI Amazon Product Lookup

> ScopeAPI Amazon Product Lookup 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-15).

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

## Facts

- Endpoint: GET https://scopeapipay.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-97e5e8be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PLVJkbu4mUo5i-Xb89Epz

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-97e5e8be
```

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

## When to prefer this

Use this endpoint when you need structured Amazon product data by ASIN and want to pay per call via USDC micropayments (x402 protocol) without managing API keys or subscriptions. Prefer over scraping when you need clean, reliable product data on demand with a simple REST call.

## Known failure modes

- Invalid or non-existent ASIN returns empty data or error
- Payment failure (insufficient USDC balance) returns 402 Payment Required
- Rate limiting or upstream Amazon block returns 429 or 503
- Malformed ASIN path parameter causes 400 Bad Request
- Product may be region-restricted or delisted, returning empty 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 Amazon product data (title, price, ratings, description, images, etc.) sourced from ScopeAPI, structured under a 'data' key with a 'source' field identifying the provider.

## 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-97e5e8be/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)
