# twitter.surf.cascade.fyi - MorphoLabs User Tweets

> twitter.surf.cascade.fyi - MorphoLabs User Tweets 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).

Fetches recent tweets posted by the MorphoLabs Twitter/X account, optionally including replies

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/users/MorphoLabs/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-59909bc5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-8AkymAe8QI11fk7svin7

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-59909bc5
```

Example prompt: Can you grab the latest tweets from MorphoLabs on Twitter, including their replies?

## When to prefer this

Use this endpoint when you specifically need tweets from the MorphoLabs account and are operating in an x402-payment-enabled agent environment. Prefer this over general Twitter scraping tools when you need a simple, paid, per-call API with no OAuth setup for this specific account.

## Known failure modes

- Account not found or handle changed — returns 404 or empty result
- Twitter API rate limit exceeded — returns 429 or error
- Paid access barrier not met (x402 payment required) — returns 402
- Network timeout or upstream Twitter API failure — returns 500 or connection error
- No tweets available for the account — returns empty list

## How this service works

User tweets

## Output

Returns a list of tweets from the MorphoLabs Twitter/X account, including tweet text, metadata, and optionally replies to other users.

## 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": "object",
    "required": [
     "id",
     "url",
     "lang",
     "text",
     "author",
     "source",
     "is_reply",
     "time_ago",
     "created_at",
     "quoted_tweet",
     "public_metrics",
     "conversation_id",
     "is_thread_start",
     "referenced_tweets"
    ],
    "properties": {
     "id": {
      "type": "string"
     },
     "url": {
      "type": "string"
     },
     "lang": {
      "type": "string"
     },
     "text": {
      "type": "string"
     },
     "author": {
      "type": "object",
      "required": [
       "id",
       "name",
       "username",
       "created_at",
       "public_metrics",
       "profile_image_url"
      ],
      "properties": {
       "id": {
        "type": "string"
       },
       "name": {
        "type": "string"
       },
       "username": {
        "type": "string"
       },
       "created_at": {
        "type": "string"
       },
       "public_metrics": {
        "type": "object",
        "required": [
         "like_count",
         "media_count",
         "tweet_count",
         "followers_count",
         "following_count"
        ],
        "properties": {
         "like_count": {
          "type": "number"
         },
         "media_count": {
          "type": "number"
         },
         "tweet_count": {
          "type": "number"
         },
         "followers_count": {
          "type": "number"
         },
         "following_count": {
          "type": "number"
         }
        }
       },
       "profile_image_url": {
        "type": "string"
       }
      }
     },
     "source": {
      "type": "string"
     },
     "is_reply": {
      "type": "boolean"
     },
     "time_ago": {
      "type": "string"
     },
     "created_at": {
      "type": "string"
     },
     "quoted_tweet": {
      "type": "object",
      "required": [
       "id",
       "url",
       "lang",
       "text",
       "media",
       "author",
       "source",
       "is_reply",
       "time_ago",
       "created_at",
       "public_metrics",
       "conversation_id",
       "is_thread_start"
      ],
      "properties": {
       "id": {
        "type": "string"
       },
       "url": {
        "type": "string"
       },
       "lang": {
        "type": "string"
       },
       "text": {
        "type": "string"
       },
       "media": {
        "type": "array
… (truncated)
```

## More

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