# Twitter Surf – User Tweets

> Twitter Surf – User 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, last successful call 2026-07-17).

Fetches the recent tweets posted by a specific Twitter/X user, optionally including replies

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/users/jaborjohn/tweets
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-07-17
- Success rate: 100% of calls made through Zero
- Rating: 5.0 / 5 from 1 review
- Activations on Zero: 11
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-surf-cascade-fyi-14028299
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VlDEbCc5NYWOOKqXWf_83

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

Example prompt: Can you fetch the recent tweets from the Twitter user @jaborjohn, including their replies, so I can see what they've been posting lately?

## When to prefer this

Use this endpoint when you need to retrieve tweets from a specific Twitter/X user by username, especially in automated or agent workflows that support x402 micropayment protocols. It is particularly useful for monitoring a user's posting activity, aggregating content for analysis, or building context around a specific account's recent statements. Prefer this over scraping when you need structured tweet data with optional reply filtering.

## Known failure modes

- User not found or invalid username — likely a 404 or empty result
- Private/protected account — tweets may be inaccessible
- Payment failure or insufficient USDC balance — x402 payment required
- Rate limiting on the underlying Twitter API — may return partial or no results
- API gateway timeout for accounts with very large tweet volumes

## How this service works

User tweets

## Output

Returns a collection of tweet objects from the specified user's timeline, including tweet text, timestamps, and metadata. Optionally includes replies if the include_replies flag is set to true.

## 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": [
  "data",
  "meta"
 ],
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "unknown"
   }
  },
  "meta": {
   "type": "object",
   "required": [
    "next_cursor",
    "result_count",
    "has_next_page"
   ],
   "properties": {
    "next_cursor": {
     "type": "string"
    },
    "result_count": {
     "type": "number"
    },
    "has_next_page": {
     "type": "boolean"
    }
   }
  }
 }
}
```

## More

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