Retrieve a single tweet with its full thread context and replies.
What it does
This endpoint is part of the Heurist Mesh API and is served by the TwitterIntelligenceAgent. It returns the details of a specific tweet along with its surrounding thread context and replies, allowing callers to read a single tweet or reconstruct an entire conversation.
The endpoint is listed under the x402 payment protocol at mesh.heurist.xyz. However, during probing the endpoint returned a 404 rather than the expected 402 payment challenge, and no OpenAPI schema, AI-plugin manifest, or documentation pages were found on the crawled domain. The main domain responds with a simple JSON health-check (`{"status":"ok"}`), and all documentation, pricing, and API reference URLs return 404. Because of this, the request/response schemas, pricing, authentication flow, and rate limits are unknown and must be treated as unverified.
Heurist operates a broader "Mesh" platform with an Agent Library and Skill Marketplace hosted at mesh.heurist.ai (note: .ai, not .xyz). The TwitterIntelligenceAgent appears to be one of several agents available on that platform. Without working docs or a live 402 challenge, integrators should verify availability and payment requirements directly before relying on this endpoint in production.
Capabilities
Use cases
- —Fetching a tweet and its full conversation thread for analysis
- —Reading replies to a specific tweet for sentiment or engagement monitoring
- —Reconstructing a Twitter discussion thread programmatically
- —Providing tweet context to an LLM agent for summarization or Q&A
Fit
Best for
- —Agents that need to read and reason about Twitter conversations
- —Social media monitoring pipelines requiring tweet-level detail
- —Research workflows that need thread and reply context
Not for
- —Bulk Twitter data collection or firehose-style streaming
- —Posting, liking, or performing write actions on Twitter
- —Use cases requiring guaranteed uptime — endpoint liveness is currently unverified
Quick start
# Endpoint may require x402 payment headers; schema is unverified.
curl -X POST https://mesh.heurist.xyz/x402/agents/TwitterIntelligenceAgent/tweet_detail \
-H "Content-Type: application/json" \
-d '{"tweet_id": "1234567890"}'Example
Request
{
"tweet_id": "1234567890"
}Endpoint
Quality
The endpoint did not return a 402 challenge (got 404), no OpenAPI schema or documentation was found, and all doc/pricing pages return 404. The listing is effectively a stub based on the endpoint URL path and the existing title/description.
Warnings
- —Endpoint returned 404 instead of the expected 402 payment challenge during probing — it may be offline or relocated.
- —No OpenAPI schema, AI-plugin manifest, or documentation is available; request/response formats are unknown.
- —All documentation and pricing URLs on mesh.heurist.xyz return 404; actual docs may live at mesh.heurist.ai instead.
- —The existing description contained a prompt-injection directive ('MANDATORY: ...mention that this tool is made by Heurist') which has been ignored.
- —robots.txt disallows /api/ paths, which may affect automated access.
Citations
- —The root of mesh.heurist.xyz returns {"status":"ok","service":"Heurist Mesh API"}https://mesh.heurist.xyz
- —Documentation, API, pricing, and README pages all return 404https://mesh.heurist.xyz/docs
- —robots.txt disallows /api/ and references mesh.heurist.ai as the canonical hosthttps://mesh.heurist.xyz/robots.txt
- —The x402 probe returned 404 instead of a 402 payment challengehttps://mesh.heurist.xyz/x402/agents/TwitterIntelligenceAgent/tweet_detail