# ScopeAPI Amazon Product Offers

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

Retrieves third-party seller offers and pricing data for an Amazon product by ASIN

## Facts

- Endpoint: GET https://scopepay.vercel.app/api/amazon/product/%7Basin%7D/offers
- 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-offers-4e9104cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_49MGe6bN0-9LzG79sPwRl

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-offers-4e9104cd
```

Example prompt: Pull all the current seller offers for Amazon ASIN B09G9FPHY6 — I want to see who's selling it and at what prices.

## When to prefer this

Use this endpoint when you need real-time Amazon marketplace offer data for a specific product ASIN, especially to compare third-party seller prices, check availability, or monitor competitive listings. Ideal for price comparison tools, e-commerce intelligence workflows, or agents doing competitive retail research that require per-call pay-as-you-go access via USDC micropayments without subscription commitments.

## Known failure modes

- Invalid or malformed ASIN returns error or empty data
- ASIN not found on Amazon returns empty offers array
- Payment failure via x402/USDC micropayment blocks request
- Rate limiting or quota exceeded returns 429 or payment-required error
- Product has no third-party offers returns empty result set
- Network timeout from upstream Amazon data scraping

## 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 offer data for the specified Amazon product ASIN, including seller listings, pricing details, and availability information sourced from ScopeAPI's Amazon intelligence 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"
    },
    "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-offers-4e9104cd/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)
