# Twitter Quote Tweets Fetcher

> Twitter Quote Tweets 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-14).

Retrieves all quote tweets for a specific tweet by its ID, with pagination support

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/tweets/2053104906702086270/quotes
- 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-50241aba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XHhEwJJHCf2CrFCYj906C

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-50241aba
```

Example prompt: Can you fetch all the quote tweets for tweet ID 2053104906702086270 so I can see how people are responding to it?

## When to prefer this

Use this endpoint when you need to retrieve quote tweets for a specific tweet by ID on Twitter/X, especially in agentic workflows requiring paid, per-call access via x402 protocol. Prefer this over scraping or unofficial methods when you need reliable, structured data with pagination support.

## Known failure modes

- Tweet ID not found or deleted — returns empty or error response
- Invalid or expired pagination cursor — returns error or resets to first page
- Rate limiting or payment failure — returns 402 or 429 status
- Private/protected tweet — quote tweets may not be accessible

## How this service works

Quote tweets

## Output

A paginated list of quote tweets for the specified tweet, including tweet content, author information, and engagement metadata. A cursor is returned for fetching subsequent pages.

## Example request

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

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cursor": {
       "type": "string",
       "description": "Pagination cursor"
      }
     }
    }
   },
   "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",
     "entities",
     "is_reply",
     "time_ago",
     "created_at",
     "quoted_tweet",
     "public_metrics",
     "conversation_id",
     "referenced_tweets",
     "in_reply_to_user_id"
    ],
    "properties": {
     "id": {
      "type": "string"
     },
     "url": {
      "type": "string"
     },
     "lang": {
      "type": "string"
     },
     "text": {
      "type": "string"
     },
     "author": {
      "type": "object",
      "required": [
       "id",
       "name",
       "location",
       "username",
       "verified",
       "created_at",
       "public_metrics",
       "profile_image_url"
      ],
      "properties": {
       "id": {
        "type": "string"
       },
       "name": {
        "type": "string"
       },
       "location": {
        "type": "string"
       },
       "username": {
        "type": "string"
       },
       "verified": {
        "type": "boolean"
       },
       "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"
     },
     "entities": {
      "type": "object",
      "required": [
       "urls",
       "mentions"
      ],
      "properties": {
       "urls": {
        "type": "array",
        "items": {
         "type": "object",
         "required": [
          "url",
          "display_url",
          "expanded_url"
         ],
         "properties": {
          "url": {
           "type": "string"
          },
          "display_url": {
           "type": "string"
          },
          "expanded_url": {
           "type": "string"
          }
         }
        }
       
… (truncated)
```

## More

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