# Heurist Mesh: Twitter Tweet Detail

> Heurist Mesh: Twitter Tweet Detail 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).

Fetches a single tweet along with its full thread context and reply chain from Twitter/X

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/TwitterIntelligenceAgent/tweet_detail
- 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-twitter-tweet-detail-ac14bc08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8yqQrdBN_1ifmcB1kCGTy

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-twitter-tweet-detail-ac14bc08 -d '<json body>'
```

Example prompt: Can you pull up the full thread and replies for this tweet — https://x.com/elonmusk/status/1234567890 — so I can see the whole conversation?

## When to prefer this

Use this endpoint when you need the full conversational context of a specific tweet — including the thread it belongs to and the replies it received. Prefer this over a general Twitter search when you already have a specific tweet URL or ID and need depth (full thread + replies) rather than breadth (many tweets). It's particularly valuable for understanding sentiment, controversy, or discussion around a single piece of content.

## Known failure modes

- Tweet ID not found or deleted — returns error or empty result
- Tweet is from a private/protected account — access denied
- Rate limiting on the Twitter data source — temporary failure
- Invalid tweet URL or ID format — request error
- Network timeout from upstream Twitter data provider

## How this service works

Get a tweet with its thread context and replies. Use this to read a single tweet or the full conversation.

## Output

Returns the full content of the requested tweet including the tweet text, author details, engagement metrics, the thread of preceding tweets in the conversation, and the replies to the tweet — giving a complete picture of the conversation.

## 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": [
      "tweet_id"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "cursor": {
       "type": "string",
       "description": "Pagination cursor for next replies page"
      },
      "tweet_id": {
       "type": "string",
       "description": "The tweet ID"
      },
      "show_thread": {
       "type": "boolean",
       "default": false,
       "description": "If true, include the entire thread including all replies; default shows only the main tweet."
      },
      "replies_limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1,
       "description": "Max number of replies to return"
      }
     }
    },
    "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-twitter-tweet-detail-ac14bc08/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)
