# Heurist MoniTwitterInsightAgent - Smart Mentions Feed

> Heurist MoniTwitterInsightAgent - Smart Mentions Feed 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-13).

Fetches recent curated smart Twitter mentions for a specified Twitter account, enriched with insights and context

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/MoniTwitterInsightAgent/get_smart_mentions_feed
- 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/mesh-heurist-xyz-d59b1054
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nANy7mnkhGyxIRii6EzkL

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-d59b1054 -d '<json body>'
```

Example prompt: Can you pull the recent smart mentions feed for the Twitter account @solana — I want to see who's been mentioning them and what the curated insights look like?

## When to prefer this

Use this endpoint when you need enriched, curated smart mentions rather than raw tweet data — specifically for monitoring Web3/crypto Twitter accounts and want pre-filtered, insight-annotated mentions. Prefer this over generic social listening tools when working within a Solana/crypto agent ecosystem and the x402 micropayment flow is already set up.

## Known failure modes

- Payment not made — returns HTTP 402 with payment requirements and USDC amount needed
- Invalid or non-existent Twitter account — may return empty results or error
- Account field missing from request body — returns validation error
- Rate limiting or upstream Twitter API unavailability — service error response
- Network timeout exceeding 120 seconds — payment timeout failure

## How this service works

Get recent smart mentions feed for a Twitter account

## Output

Returns a structured JSON object containing recent smart mentions for the specified Twitter account, including curated contextual insights about each mention, relevant engagement data, and enriched analysis of notable conversations referencing the account.

## 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": [
      "username"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "limit": {
       "type": "integer",
       "default": 100,
       "description": "Maximum number of mentions to return"
      },
      "toDate": {
       "type": "integer",
       "description": "Unix timestamp of the most recent post to include"
      },
      "fromDate": {
       "type": "integer",
       "description": "Unix timestamp of the earliest event to include"
      },
      "username": {
       "type": "string",
       "description": "Twitter username without the @ symbol"
      }
     }
    },
    "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-d59b1054/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)
