# twit.sh List Tweets

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

Fetches real-time tweets from a specified Twitter/X List by its numeric List ID, returning tweet text, author details, and engagement metrics

## Facts

- Endpoint: GET https://twit.sh/lists/tweets
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twit-sh-list-tweets-6282db58
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Muqj1uBTL0WwW3hT0azns

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-list-tweets-6282db58
```

Example prompt: Pull the latest tweets from Twitter List ID 84839422 — I want to see what people are posting, including their names, usernames, and how many likes each tweet has.

## When to prefer this

Choose this endpoint when your AI agent needs real-time Twitter/X list timeline data without managing Twitter developer credentials or OAuth flows. It is ideal for autonomous agents that pay per-request in USDC on Base via x402, monitoring curated lists of accounts without any sign-up overhead. Prefer this over direct Twitter API access when you need a frictionless, keyless integration for list-based social listening.

## Known failure modes

- Invalid or non-existent List ID returns an error or empty data array
- Expired or invalid next_token causes pagination failure
- Rate limiting or upstream Twitter API downtime may cause request failures
- Private or members-only lists may return no tweets or an access error
- Payment failure via x402/USDC results in a 402 response and no data returned

## 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 tweets, each containing the tweet ID, full text, author object (id, name, username), creation timestamp, and public engagement metrics (likes, quotes, replies, retweets). Also includes a meta.next_token for paginating to the next page of results.

## 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 Twitter/X List 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-list-tweets-6282db58/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)
