# ScopeAPI Amazon Seller Products Lookup

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

Retrieves the list of products associated with a specific Amazon seller by their seller ID

## Facts

- Endpoint: GET https://scopeapipay.vercel.app/api/amazon/seller/%7BsellerId%7D/products
- Price: $0.75/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-seller-products-lookup-ce366702
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dHa4PnZLoDqrW3Cg06pKg

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-seller-products-lookup-ce366702
```

Example prompt: Can you pull up all the products listed by Amazon seller ID A2CHL5GQVS1T98 so I can see what they're selling on the marketplace?

## When to prefer this

Use this endpoint when you need to enumerate all products offered by a specific Amazon seller identified by their seller ID, particularly for competitive intelligence, market research, or seller auditing. Prefer this over general Amazon product search when you already know the seller ID and want a seller-centric product view.

## Known failure modes

- Invalid or non-existent seller ID returns empty data or error
- Seller ID for a suspended/removed seller may yield no products
- Rate limiting or payment failure (x402 USDC micropayment not processed) results in 402 response
- Malformed seller ID path parameter causes 400 or error response
- Seller with private/unlisted catalog may return empty product set

## 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

A JSON object containing product data associated with the specified Amazon seller, sourced from ScopeAPI, including product listings and related e-commerce details under a 'data' key.

## 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": {
      "sellerId": {
       "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-seller-products-lookup-ce366702/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)
