# Twitter Surf Cascade - User Tweets for SaturnCredit

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

Retrieves the tweet timeline for the Twitter/X user @SaturnCredit, with optional filtering of replies

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/users/SaturnCredit/tweets
- Price: $0.004000/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-ed3fc718
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gzLsNekOQMHY36v0sSUnw

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

Example prompt: Can you pull the latest tweets from SaturnCredit on Twitter, excluding replies, so I can see what they've been posting recently?

## When to prefer this

Use this endpoint when you specifically need tweets from the @SaturnCredit Twitter account and want paginated access with optional reply filtering. This is a pre-scoped endpoint for a specific user rather than a general search, making it ideal for monitoring or archiving a single account's activity.

## Known failure modes

- Empty data array with result_count 0 if the user has no tweets or account is private
- Pagination cursor may become stale if tweets are deleted between requests
- Rate limiting or payment failure returning a 402 if USDC payment is not properly attached
- Invalid or expired cursor causing pagination errors
- Network timeout if Twitter's underlying API is slow

## How this service works

User tweets

## Output

Returns a paginated array of tweet objects from @SaturnCredit's timeline, along with metadata including the total result count, a next_cursor string for fetching additional pages, and a has_next_page boolean indicating whether more results exist.

## 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-ed3fc718/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)
