# ScriptMasterLabs Token Top Markets API

> ScriptMasterLabs Token Top Markets API is a paid API for AI agents from acp-x402-discovery.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns top market data for a specified cryptocurrency token, settled via x402 micropayment in USDC on Base

## Facts

- Endpoint: GET https://acp-x402-discovery.onrender.com/x402/token-top-markets
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scriptmasterlabs-token-top-markets-api-5f1929e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DF_M7qhWiiUNpQXh5-BFz

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 scriptmasterlabs-token-top-markets-api-5f1929e7
```

Example prompt: What are the top markets for Ethereum right now — I want to see where it's being traded with the most volume and liquidity?

## When to prefer this

Choose this endpoint when you need quick, pay-per-call access to top market listings for a specific cryptocurrency token without a subscription. Ideal for agents making infrequent or one-off market lookups where a $0.001 USDC micropayment per call is preferable to a monthly API subscription. Best when you need exchange/market-level data for a known token ID rather than broad portfolio analytics.

## Known failure modes

- Invalid or unrecognized token ID returns an error or empty result
- Payment not settled via x402 returns HTTP 402 Payment Required
- Downstream market data provider outage causes unavailability
- Malformed query parameter causes a 400 Bad Request
- Render.com cold start may add latency on first call

## How this service works

Pay-per-call crypto, RWA, federal, SEC, and compliance APIs. Settled in USDC on Base via x402. Hyphen routes only (e.g. /x402/rwa-aggregates, /x402/gas-tracker).

## Output

A list of top trading markets for the specified token, likely including exchange names, trading pair symbols, prices, trading volume, and liquidity depth data. Response is a JSON object with market entries ranked by relevance or volume.

## 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": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "default": "ethereum",
       "example": "ethereum"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scriptmasterlabs-token-top-markets-api-5f1929e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from acp-x402-discovery.onrender.com](https://www.zero.xyz/host/acp-x402-discovery.onrender.com/llms.txt)
