# ScopeAPI Amazon Seller Profile Lookup

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

Fetches profile and intelligence data for an Amazon seller by their seller ID

## Facts

- Endpoint: GET https://scopepay.vercel.app/api/amazon/seller/%7BsellerId%7D
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scopeapi-amazon-seller-profile-lookup-8039fed2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nq_GoReZVEp1OR_T3JcGv

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-profile-lookup-8039fed2
```

Example prompt: Can you pull up the seller profile on Amazon for seller ID A2L77EE7U53NWQ? I want to know who they are and what their details look like.

## When to prefer this

Use this endpoint when you need to look up a specific Amazon seller's profile by their seller ID and want to pay per-call via USDC micropayments without a subscription. Prefer this over scraping or other aggregators when you need structured seller intelligence from Amazon's marketplace quickly and programmatically.

## Known failure modes

- Invalid or non-existent seller ID returns empty or error data object
- Payment failure via x402/USDC micropayment results in 402 response and no data returned
- Rate limiting or quota exceeded returns an error response
- Seller ID format mismatch with path parameter may cause routing error
- Amazon data temporarily unavailable may return empty data field

## 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 Amazon seller profile data and intelligence for the specified seller ID, sourced from ScopeAPI's Amazon data layer. The exact fields returned include seller metadata and related e-commerce data points.

## 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-profile-lookup-8039fed2/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)
