# ScopeAPI Amazon Category Data

> ScopeAPI Amazon Category Data 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).

Retrieves product and listing data for a specific Amazon category by category ID

## Facts

- Endpoint: GET https://scopeapipay.vercel.app/api/amazon/category/%7BcategoryId%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-category-data-620d30c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-NZh6r-IFDBj5Z50tnl5-

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-category-data-620d30c6
```

Example prompt: Pull the product listings and category details for Amazon category ID 16225007011 — I want to see what's available in that category.

## When to prefer this

Choose this endpoint when you need structured Amazon category-level product data for a specific category ID and want pay-per-call pricing via USDC micropayments rather than a subscription model. Ideal for agents doing targeted e-commerce intelligence, competitive research, or category browsing without committing to a monthly plan.

## Known failure modes

- Invalid or non-existent categoryId returns empty data or error
- Payment failure via x402/USDC results in 402 Payment Required response
- Rate limiting or quota exceeded returns 429 or equivalent error
- Malformed category ID in path parameter causes 400 Bad Request
- Amazon data temporarily unavailable causes 503 or timeout

## 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 a 'data' field containing Amazon category details and product listings for the given category ID, along with a 'source' field identifying ScopeAPI as 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": {
      "categoryId": {
       "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-category-data-620d30c6/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)
