# Base Pulse Trending Tokens

> Base Pulse Trending Tokens is a paid API for AI agents from base-pulse.annushka1190.workers.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Returns ranked trending tokens on Base with momentum and risk scores

## Facts

- Endpoint: GET https://base-pulse.annushka1190.workers.dev/v1/trending/base
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-pulse-trending-tokens-365ad042
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E6DYnY4ZnpCvJ7ZYkYK3q

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 base-pulse-trending-tokens-365ad042
```

Example prompt: Show me the top 10 trending tokens on Base right now, including their momentum and risk scores so I can decide which ones are worth looking at.

## When to prefer this

Choose this endpoint when you need a pre-ranked, scored list of trending Base chain tokens with both momentum and risk signals in a single call, without managing API keys. Ideal for agents making trade decisions, building watchlists, or monitoring Base DeFi activity in real time. Prefer over raw DEX APIs when you want normalized risk/momentum scoring out of the box.

## Known failure modes

- Invalid limit parameter returns 400 with validation error
- Payment not received or expired returns 402 with payment required details
- Upstream data source unavailable may return 503 or stale data
- Rate limiting may occur if payment validation fails
- Empty items array if no tokens meet trending criteria

## How this service works

Pay-per-call market intel and data tools for AI agents: trending Base tokens with momentum/risk scores, live token scoring, multi-source spot prices, Base gas tips, wallet intel, x402 merchant reliability checks, DefiLlama TVL, GitHub trending repos, RSS feed digests, and WHOIS domain lookups. Built from free public data — no API keys for callers. USDC via x402 on Base and Solana.

## Output

A JSON object containing the chain identifier ('base'), a count of returned tokens, and an array of token items each with symbol, contract address, risk label (e.g. 'low'/'medium'/'high'), numeric risk score (0–1), and numeric momentum score (0–1).

## 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": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ]
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "base",
  "count": 1,
  "items": [
   {
    "symbol": "TOK",
    "address": "0x...",
    "risk_label": "low",
    "risk_score": 0.2,
    "momentum_score": 0.7
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/base-pulse-trending-tokens-365ad042/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from base-pulse.annushka1190.workers.dev](https://www.zero.xyz/host/base-pulse.annushka1190.workers.dev/llms.txt)
