# Twitter Batch Tweet Fetcher

> Twitter Batch Tweet Fetcher 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-15).

Fetches the content and metadata of multiple tweets in a single request given a list of tweet IDs

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/tweets
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-surf-cascade-fyi-cb29c0e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SsEb_hQf6hhblN5ZtKKfY

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-cb29c0e1
```

Example prompt: Can you fetch the full tweet details for these tweet IDs: 1234567890123456789, 9876543210987654321, and 1122334455667788990?

## When to prefer this

Use this endpoint when you have a known list of tweet IDs and need to retrieve their full content and metadata in a single batch call. Ideal for hydrating tweet IDs gathered from other sources, rather than searching for tweets by keyword or user timeline scraping.

## Known failure modes

- Invalid or malformed tweet IDs return an error or empty result
- IDs for deleted or suspended tweets may return empty or error responses
- Exceeding the maximum number of IDs per request may cause failures
- Missing required 'ids' query parameter returns a validation error
- Payment failure via x402 protocol prevents the request from completing

## How this service works

Pay-per-use Twitter/X data API with x402 micropayments.

## Output

Returns a collection of tweet objects hydrated from the provided IDs, including tweet text, author information, timestamps, engagement metrics, and other tweet-level metadata for each requested ID.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "id": "123",
    "text": "Hello world"
   }
  ],
  "meta": {
   "result_count": 3,
   "has_next_page": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-surf-cascade-fyi-cb29c0e1/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)
