# Surf Twitter - Get Quote Tweets

> Surf Twitter - Get Quote 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-09).

Retrieves all quote tweets for a given tweet ID, returning quoted tweet text and author metadata, paid via x402 micropayments.

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/tweets/%7Bid%7D/quotes
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/surf-twitter-get-quote-tweets-108719fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mffFwVe34DlIkSjXUbiLp

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 surf-twitter-get-quote-tweets-108719fe
```

Example prompt: Show me all the quote tweets for tweet ID 1234567890 — I want to see who quoted it and what they said.

## When to prefer this

Use this endpoint when you need to retrieve quote tweet engagement data for a specific tweet by ID. Prefer this over scraping or manual lookup when you want structured, paginated quote tweet data with author attribution and are comfortable paying $0.004 USDC per call via x402 micropayments.

## Known failure modes

- Tweet ID not found or deleted — empty data array returned
- Payment failure — x402 micropayment not processed, 402 response
- Invalid tweet ID format — bad request error
- Private or restricted tweet — access denied
- Rate limit exceeded — too many requests
- No quotes exist for the tweet — empty result set

## How this service works

Pay-per-use Twitter/X data API with x402 micropayments.

## Output

A JSON object containing an array of quote tweet objects (each with id, text, and author username), plus pagination metadata including result_count and has_next_page flag.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "id": "456",
    "text": "Quote tweet",
    "author": {
     "username": "user2"
    }
   }
  ],
  "meta": {
   "result_count": 10,
   "has_next_page": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/surf-twitter-get-quote-tweets-108719fe/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)
