# Twitter Surf - User Tweets by Handle

> Twitter Surf - User Tweets by Handle 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).

Fetches recent tweets for a specific Twitter/X user by their handle, with optional reply filtering

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/users/0xAvious/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-84b7b434
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_547KfL_u8rFUYA5QocKaq

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-84b7b434
```

Example prompt: Can you pull the recent tweets from the Twitter account @0xAvious — exclude any replies, just their original posts?

## When to prefer this

Use this endpoint when you need to retrieve tweets for a specific Twitter/X user by handle and are operating in a pay-per-call x402 micropayment context. Prefer this over scraping or OAuth-based Twitter API access when you need lightweight, on-demand tweet retrieval without managing credentials. The include_replies parameter allows filtering to original posts only.

## Known failure modes

- User handle not found — 404 or empty result
- Payment not provided or insufficient — 402 Payment Required
- Response truncated due to large data size (_truncated: true)
- Rate limiting from underlying Twitter API
- Invalid or suspended account returns empty or error response

## How this service works

User tweets

## Output

A (potentially truncated) JSON payload containing the user's tweets. The response includes a _truncated boolean indicating whether the full result was cut short and _originalSize indicating total data size in bytes. Actual tweet objects (text, timestamps, engagement) are nested within the payload when not truncated.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "include_replies": false
  }
 }
}
```

## 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",
     "properties": {
      "include_replies": {
       "type": "boolean",
       "description": "Include replies"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "_truncated",
  "_originalSize"
 ],
 "properties": {
  "_truncated": {
   "type": "boolean"
  },
  "_originalSize": {
   "type": "number"
  }
 }
}
```

## More

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