# Twitter List Tweets

> Twitter List Tweets is a paid API for AI agents from twitter.surf.cascade.fyi, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Retrieves tweets from a specified Twitter/X list by list ID, with optional pagination support

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/lists/:id/tweets
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-surf-cascade-fyi-2afb7823
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ig8aZ4Ei7czfCT_jxHmy8

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 twitter-surf-cascade-fyi-2afb7823
```

Example prompt: Can you fetch the latest tweets from Twitter list ID 1234567890? If there are more results, use the pagination cursor to get the next page too.

## When to prefer this

Use this endpoint when you need to retrieve tweets from a specific curated Twitter/X list identified by its list ID, particularly when you want to monitor or aggregate content from a predefined group of accounts. Prefer this over user-tweet endpoints when the content source is a list rather than an individual user.

## Known failure modes

- Invalid or non-existent list ID returns an error
- Private or restricted list may return unauthorized error
- Payment failure (x402) if USDC funds are insufficient
- Invalid pagination cursor returns error or unexpected results
- Rate limiting may cause temporary failures

## How this service works

List tweets

## Output

A collection of tweets from the specified Twitter/X list, including tweet content and associated metadata, with a pagination cursor for retrieving additional results if available

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "id": "1234567890"
  },
  "queryParams": {}
 }
}
```

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cursor": {
       "type": "string",
       "description": "Pagination cursor"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-surf-cascade-fyi-2afb7823/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.surf.cascade.fyi](https://www.zero.xyz/host/twitter.surf.cascade.fyi/llms.txt)
