# Heurist Twitter/X User Timeline Fetcher

> Heurist Twitter/X User Timeline Fetcher 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 a specified Twitter/X user's recent posts and announcements via the Heurist Mesh agent network.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/TwitterIntelligenceAgent/user_timeline
- 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-69ca68e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8e0ZTGnrTuqlkh6TeceNE

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

Example prompt: Can you pull the most recent tweets from @VitalikButerin's Twitter timeline so I can see what he's been announcing lately?

## When to prefer this

Use this endpoint when you need to retrieve the recent tweet history of a specific Twitter/X user, especially in Web3/crypto contexts. Prefer this over generic web scraping when you want structured social content from a known handle, or when you need to track announcements from a project or influencer on X.

## Known failure modes

- Invalid or non-existent Twitter username returns an error or empty result
- Rate limiting or access restrictions on the underlying Twitter/X API
- Private or suspended accounts may return no data
- Payment failure or insufficient USDC balance prevents the call from completing
- Network timeout from the Heurist Mesh infrastructure

## How this service works

Fetch a Twitter/X user's recent posts. Use when you want their latest activity or official announcements.

## Output

A list of the user's recent Twitter/X posts and announcements, including tweet text and potentially timestamps or engagement metadata, as retrieved by the Heurist TwitterIntelligenceAgent.

## 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": [
      "identifier"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 5,
       "description": "Maximum number of tweets to return"
      },
      "cursor": {
       "type": "string",
       "description": "Pagination cursor from a prior call"
      },
      "identifier": {
       "type": "string",
       "description": "User handle (with @) or numeric user_id"
      }
     }
    },
    "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-69ca68e1/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)
