# VIBE Twitter Quote Tweets Fetcher

> VIBE Twitter Quote Tweets Fetcher is a paid API for AI agents from api.vibe.airforce, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches quote tweets for a specific Twitter/X tweet by tweet ID

## Facts

- Endpoint: GET https://api.vibe.airforce/api/x402/vibe-tools/twitter/tweet/2060755920691384561/quote-tweets
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-vibe-airforce-f0c0249b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_03qxDKZtO7VsGMvGChTHe

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 api-vibe-airforce-f0c0249b
```

Example prompt: Can you pull all the quote tweets for tweet ID 2060755920691384561 on Twitter so I can see who is engaging with it and what they're saying?

## When to prefer this

Use this endpoint when you need to specifically retrieve quote tweets for a known tweet ID on Twitter/X, particularly for monitoring engagement, tracking discourse around a tweet, or analyzing how content is being reshared with commentary. Prefer this over general Twitter search when you have a specific tweet ID and need its quote tweet thread.

## Known failure modes

- Tweet ID not found or deleted — empty result or 404 error
- Tweet has no quote tweets — returns empty data array
- Rate limiting or payment failure — 402 or 429 error
- Invalid tweet ID format — validation error
- Twitter API downtime — upstream service unavailable error

## How this service works

Get quote tweets of a specific tweet. Returns tweets that quote the target tweet.

## Output

Returns a list of quote tweets for the specified tweet, including the quoting tweet content, author profile information, and engagement metrics for each quote tweet.

## Example request

```json
{
 "input": {
  "body": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "data": {
     "type": "object",
     "properties": {
      "tweets": {
       "type": "array",
       "items": {
        "type": "object"
       },
       "description": "Quote tweets with id, text, author, created_at, and public_metrics"
      },
      "tx_hash": {
       "type": "string",
       "description": "EIP-3009 payment transaction hash on Base"
      },
      "next_token": {
       "type": "string",
       "description": "Pagination token for next page (null if last page)"
      },
      "amount_paid": {
       "type": "number",
       "description": "Amount paid for this request in USDC"
      },
      "total_results": {
       "type": "integer",
       "description": "Number of quote tweets returned"
      }
     },
     "description": "Quote tweets of a specific tweet — tweets that quote the target"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-vibe-airforce-f0c0249b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.vibe.airforce](https://www.zero.xyz/host/api.vibe.airforce/llms.txt)
