# Heurist Mesh TrendingTokenAgent

> Heurist Mesh TrendingTokenAgent is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns the currently trending tokens most talked about and traded on CEXs and DEXs, optionally filtered by blockchain chain.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/TrendingTokenAgent/get_trending_tokens
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mesh-heurist-xyz-0a9c71e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7AXVSgwwrzB_zD-XyRJYq

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 mesh-heurist-xyz-0a9c71e0 -d '<json body>'
```

Example prompt: What are the trending crypto tokens right now across CEXs and DEXs on Solana — the ones most talked about and actively traded?

## When to prefer this

Use this endpoint when you need a real-time pulse on which tokens are gaining traction across both CEX and DEX trading venues simultaneously, especially when you want social buzz and trading volume combined. Prefer this over Twitter-only trending endpoints when you want cross-venue market signal, not just social chatter.

## Known failure modes

- Invalid or unsupported chain filter returns empty result or error
- Network timeout if the upstream data source is slow
- Payment failure if insufficient USDC balance for the $0.01 call fee
- No trending tokens found for a very niche chain filter

## How this service works

Get trending tokens that are most talked about and traded on CEXs and DEXs. Optionally get trending tokens on a specific chain.

## Output

A ranked list of currently trending tokens identified by their activity and social buzz across centralized and decentralized exchanges, with optional chain-specific filtering.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [],
     "properties": {
      "chain": {
       "enum": [
        "base",
        "ethereum",
        "solana",
        "bsc",
        "robinhood"
       ],
       "type": "string",
       "description": "Chain to get trending tokens for. Your default action is to keep it empty to get trending tokens across CEXs and chains. Include this field if specific chain is requested in the context."
      },
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "include_memes": {
       "type": "boolean",
       "description": "Include GMGN trending memecoins and Pump.fun recent graduated tokens. Keep it false by default. Include only if memecoins are specifically requested in the context."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mesh-heurist-xyz-0a9c71e0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
