# ScriptMasterLabs Trending Tokens API

> ScriptMasterLabs Trending Tokens 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 a list of currently trending cryptocurrency tokens, ranked by activity or momentum.

## Facts

- Endpoint: GET https://acp-x402-discovery.onrender.com/x402/trending-tokens
- 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-trending-tokens-api-28513223
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oZyfDkkNI8Ghwiyc9s_kq

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-trending-tokens-api-28513223
```

Example prompt: What are the top 10 trending crypto tokens right now? Pull the latest list from the ScriptMasterLabs x402 API.

## When to prefer this

Choose this endpoint when you need a real-time or near-real-time list of trending crypto tokens and can pay micro-fees in USDC on Base via the x402 protocol. It is particularly suited for agents embedded in DeFi workflows, trading dashboards, or research pipelines that already use x402 payment rails. Prefer it over free alternatives when you need pay-per-call flexibility without API key subscriptions.

## Known failure modes

- Payment not settled in USDC on Base — returns 402 Payment Required
- Invalid or missing x402 payment header — request rejected
- limit parameter out of acceptable range — may return default or error
- Upstream data source unavailable — 502 or 503 error
- Response schema is loosely defined (example: {}), so actual field names may vary or be undocumented

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

Returns a ranked list of trending cryptocurrency tokens, typically including token name, symbol, and associated momentum or activity metrics. The number of results is controlled by the `limit` query parameter (default 10).

## 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": {
      "limit": {
       "type": "integer",
       "default": 10,
       "example": 10
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scriptmasterlabs-trending-tokens-api-28513223/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)
