# twit.sh Tweet Replies Fetcher

> twit.sh Tweet Replies Fetcher is a paid API for AI agents from twit.sh, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches real-time replies to a specific tweet by numeric tweet ID, with pagination support, paid per-request via USDC on Base

## Facts

- Endpoint: GET https://twit.sh/tweets/replies
- 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/twit-sh-tweet-replies-fetcher-cc8bea71
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2Oy799cFo11rxL3NVeoLq

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 twit-sh-tweet-replies-fetcher-cc8bea71
```

Example prompt: Pull all the replies to tweet ID 1110302988 — I want to see who responded, what they said, and how many likes each reply got.

## When to prefer this

Use this endpoint when you need real-time reply data for a specific tweet without requiring your own Twitter API credentials. Ideal for AI agents that need autonomous, per-request access to Twitter conversation data paid in USDC on Base via x402. Prefer this over setting up Twitter developer credentials when you want zero-setup, pay-as-you-go access to tweet reply threads.

## Known failure modes

- Invalid or non-existent tweet ID returns empty data array
- Tweet with no replies returns empty data array
- Expired or invalid next_token causes pagination failure
- Payment failure or insufficient USDC balance blocks request with 402 response
- Private or deleted tweet ID returns no data
- Rate limits from the underlying X API may result in errors or delayed responses

## How this service works

Real-time Twitter/X data for AI agents. No sign-up, no API keys. Pay per request in USDC on Base via x402. Fully autonomous.

## Output

Returns a JSON array of reply tweet objects, each containing the reply tweet ID, full text, author info (ID, name, username), timestamp, and public engagement metrics (likes, quotes, replies, retweets). Also includes a next_token for paginating through additional replies.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Numeric tweet ID"
      },
      "next_token": {
       "type": "string",
       "description": "Pagination cursor from previous response"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "id": "1110302988",
    "text": "Running bitcoin",
    "author": {
     "id": "9253672",
     "name": "Hal Finney",
     "username": "halfin"
    },
    "created_at": "2009-01-11T03:39:18.000Z",
    "public_metrics": {
     "like_count": 134000,
     "quote_count": 3500,
     "reply_count": 5400,
     "retweet_count": 32000
    }
   }
  ],
  "meta": {
   "next_token": "abc123"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twit-sh-tweet-replies-fetcher-cc8bea71/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twit.sh](https://www.zero.xyz/host/twit.sh/llms.txt)
