# Heurist Mesh: Elfa Twitter Intelligence Agent – Search Mentions

> Heurist Mesh: Elfa Twitter Intelligence Agent – Search Mentions 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-14).

Search Twitter for mentions of specific tokens or topics by influential accounts, returning tweets and discussions from smart/influential users only.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/ElfaTwitterIntelligenceAgent/search_mentions
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-elfa-twitter-intelligence-agent-search-mentions-d3abb836
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D7nPYGQik-VPHUI204DrP

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-elfa-twitter-intelligence-agent-search-mentions-d3abb836 -d '<json body>'
```

Example prompt: What are influential Twitter accounts saying about Solana and Jupiter right now? Search for mentions of those two tokens so I can gauge the current social sentiment.

## When to prefer this

Use this endpoint when you need to understand the social narrative around a specific crypto token, blockchain project, or topic as expressed by influential Twitter accounts. It is preferable over general web search when you specifically want Twitter signal from smart/influential accounts rather than all social media or news sources. Choose this over generic Twitter search APIs when you want pre-filtered, high-signal influencer content rather than the full noisy firehose. Best for crypto-native social intelligence tasks.

## Known failure modes

- More than 3 keywords provided — API rejects or truncates input
- Keywords are long sentences or phrases rather than single concepts — poor results or rejection
- No influential accounts have tweeted about the topic recently — empty result set
- Payment failure via x402 protocol — call not processed
- Rate limiting or service unavailability — HTTP 402/429/503 response
- Topic too generic or misspelled — irrelevant or empty results

## How this service works

Search for mentions of specific tokens or topics on Twitter. This tool finds discussions about cryptocurrencies, blockchain projects, or other topics of interest. It provides the tweets and mentions of smart accounts (only influential ones) and does not contain all tweets. Use this when you want to understand what influential people are saying about a particular token or topic on Twitter. Each of the search keywords should be one word or phrase. A maximum of 3 keywords are allowed. One key word should be one concept. Never use long sentences or phrases as keywords.

## Output

A list of tweets and mentions from influential ('smart') Twitter accounts matching the provided keywords, including tweet content and account information. Does not return all tweets — filtered to high-signal, influential users only.

## 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": [
      "keywords"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "limit": {
       "type": "number",
       "default": 10,
       "description": "Maximum number of results (minimum: 10, maximum: 20)"
      },
      "days_ago": {
       "type": "number",
       "default": 20,
       "description": "Number of days to look back"
      },
      "keywords": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "List of keywords to search for"
      }
     }
    },
    "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-elfa-twitter-intelligence-agent-search-mentions-d3abb836/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)
