# Heurist Mesh: Get Trending Tokens on Twitter

> Heurist Mesh: Get Trending Tokens on Twitter is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the currently trending cryptocurrency tokens on Twitter, including token names, relative popularity, and sentiment indicators sourced from the ELFA API.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/ElfaTwitterIntelligenceAgent/get_trending_tokens
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-get-trending-tokens-on-twitter-24c070e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MgelIh3dGG9oXuk2WVGY1

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 heurist-mesh-get-trending-tokens-on-twitter-24c070e5 -d '<json body>'
```

Example prompt: What cryptocurrencies are trending on Twitter right now? I want to see which tokens are generating the most buzz on crypto Twitter at this moment, with their popularity and sentiment.

## When to prefer this

Choose this endpoint when you need real-time social media signal for crypto tokens — specifically Twitter trending data with sentiment. Prefer this over on-chain analytics endpoints when you want to understand market narrative and community buzz rather than price or volume. It's ideal for discovering emerging tokens before they appear in traditional market data feeds.

## Known failure modes

- ELFA API unavailability causing empty or error response
- Rate limiting on the Heurist Mesh endpoint
- Stale data if real-time feed has a delay
- Payment failure if USDC balance is insufficient for the $0.01 per call fee
- Empty results during low-activity periods on Twitter

## How this service works

Get current trending tokens on Twitter. This tool identifies which cryptocurrencies and tokens are generating the most buzz on Twitter right now. The results include token names, their relative popularity, and sentiment indicators. Use this when you want to discover which cryptocurrencies are currently being discussed most actively on social media. Data comes from ELFA API and represents real-time trends.

## Output

A list of currently trending cryptocurrency tokens on Twitter, including token names, their relative popularity scores, and sentiment indicators reflecting the current mood around each token. Data is real-time, sourced from the ELFA API.

## 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",
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "time_window": {
       "type": "string",
       "default": "24h",
       "description": "Time window to analyze"
      }
     }
    },
    "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/heurist-mesh-get-trending-tokens-on-twitter-24c070e5/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)
