# Trending Tokens on Base

> Trending Tokens on Base is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches up to 15 currently trending tokens on the Base blockchain, filtered from the DexScreener boosts feed, with address, description, boost amount, and link.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/trending-tokens
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trending-tokens-on-base-a22c8fab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p1bmxlzSN4B8c9-0vxjQp

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 trending-tokens-on-base-a22c8fab
```

Example prompt: What tokens are trending on Base right now? Pull the latest DexScreener boosts feed so I can see which ones have the highest boost amounts and their contract addresses.

## When to prefer this

Choose this endpoint when you need real-time trending token discovery specifically on the Base blockchain via DexScreener boosts data. Ideal for discovery bots, alpha-hunting dashboards, or any agent that needs a quick, low-cost snapshot of what tokens are gaining momentum on Base without having to query DexScreener directly.

## Known failure modes

- DexScreener API unavailable — empty or error response returned
- Fewer than 15 tokens currently trending — list may be shorter than expected
- Token data may be stale if DexScreener feed has not updated recently
- Payment failure — call rejected if $0.01 USDC not provided via x402 protocol

## How this service works

Fetches the DexScreener boosts feed filtered to Base — up to 15 trending tokens with address, description, boost amount, and link. Great for discovery bots.

## Output

Returns a list of up to 15 trending token entries on the Base blockchain sourced from DexScreener's boosts feed. Each entry includes the token's contract address, a short description, the current boost amount, and a link to its DexScreener page.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trending-tokens-on-base-a22c8fab/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
