# ScopeAPI Amazon Seller Lookup

> ScopeAPI Amazon Seller 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-13).

Fetches profile and intelligence data for a specific Amazon seller by seller ID

## Facts

- Endpoint: GET https://scopeapipay.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-lookup-25142933
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R75EEu-9i3SES7tobeYWe

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

Example prompt: Look up the Amazon seller profile for seller ID A2L77EE7U53NWQ and tell me what you can find out about them — their name, ratings, and any other available details.

## When to prefer this

Use this endpoint when you need to look up a specific Amazon seller by their seller ID and retrieve profile or intelligence data about them. Ideal for competitive research, vendor due diligence, or marketplace analysis workflows where individual seller lookup is needed and pay-per-call USDC micropayment billing is acceptable.

## Known failure modes

- Invalid or non-existent seller ID returns empty or error data
- Payment failure via x402/USDC micropayment prevents data retrieval
- Rate limiting or quota exceeded on the underlying data source
- Amazon data unavailable or seller account suspended
- Malformed sellerId path parameter causes request failure

## 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 seller profile data sourced from Amazon marketplace intelligence, including available details about the seller such as name, rating, reviews, and other marketplace metadata.

## 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-lookup-25142933/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)
