# PayWeave Twitter – Fetch Tweet Thread

> PayWeave Twitter – Fetch Tweet Thread is a paid API for AI agents from twitter.payweave.services, paid per call via x402, $0.0177/call, status unknown (last checked 2026-09-15).

Retrieves all tweets in a thread (conversation chain) by tweet ID, with pagination support, via a pay-per-call X/Twitter proxy.

## Facts

- Endpoint: GET https://twitter.payweave.services/tweets/thread
- Price: $0.0177/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-twitter-fetch-tweet-thread-b5a3734b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RcjWwr1CZXfj0Ks_73HWh

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 payweave-twitter-fetch-tweet-thread-b5a3734b
```

Example prompt: Can you pull the full tweet thread for tweet ID 1693573582226665701 from Twitter, including all replies and follow-up tweets in the conversation?

## When to prefer this

Use this endpoint when you need to retrieve the full conversation thread tied to a specific tweet ID from X/Twitter, especially when the thread is long and requires pagination. Prefer this over single-tweet lookup endpoints when the user wants the complete chain of replies and follow-ups. It is a pay-per-call endpoint using x402/USDC micropayments, making it suitable for on-demand agent workflows without subscription overhead.

## Known failure modes

- Invalid or non-numeric tweet ID returns an error or empty result
- Tweet ID does not exist or has been deleted — returns empty tweets array
- Private/protected account tweets are inaccessible
- Rate limiting or upstream twitterapi.io outage causes failure
- Invalid next_token cursor causes pagination error
- Payment failure (insufficient USDC balance) blocks the request at the x402 layer

## How this service works

X/Twitter data — tweets, users, communities, lists, articles, and trends.

## Output

Returns a JSON object containing an array of tweet objects in the thread (forwarded verbatim from twitterapi.io), a next_cursor string for pagination, and a has_next_page boolean indicating whether more tweets are available. Each tweet object includes standard Twitter fields such as text, author, timestamps, and engagement metrics.

## 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": {
     "anyOf": [
      {
       "not": {}
      },
      {
       "type": "object",
       "required": [
        "id"
       ],
       "properties": {
        "id": {
         "type": "string",
         "pattern": "^\\d+$",
         "description": "Numeric ID, e.g. 1693573582226665701"
        },
        "next_token": {
         "type": "string",
         "description": "Pagination cursor from a previous response `next_cursor`. Omit for the first page."
        }
       },
       "additionalProperties": false
      }
     ]
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "example"
   ],
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "tweets": {
       "type": "array",
       "items": {
        "type": "object",
        "additionalProperties": {}
       },
       "description": "Array of tweet objects."
      },
      "next_cursor": {
       "type": "string",
       "description": "Cursor to pass as `next_token` for the next page."
      },
      "has_next_page": {
       "type": "boolean",
       "description": "True when more pages are available."
      }
     },
     "description": "Tweet list JSON forwarded verbatim from twitterapi.io.",
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-twitter-fetch-tweet-thread-b5a3734b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.payweave.services](https://www.zero.xyz/host/twitter.payweave.services/llms.txt)
