# VIBE Quote Tweets Fetcher

> VIBE 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 paginated quote tweets for a specific tweet by its ID, returning tweet text, author info, and engagement metrics.

## Facts

- Endpoint: GET https://api.vibe.airforce/api/x402/vibe-tools/twitter/tweet/%7Btweet_id%7D/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/vibe-quote-tweets-fetcher-c60c5465
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7aAPZO4fHItgOfBOxtbEx

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 vibe-quote-tweets-fetcher-c60c5465
```

Example prompt: Pull all the quote tweets for tweet ID 1234567890123456789 so I can see how the crypto community is reacting to that announcement.

## When to prefer this

Use this endpoint when you need to retrieve quote tweets for a specific tweet using a pay-per-call x402 micropayment model with no API keys or account setup required. It is ideal for crypto research agents monitoring social sentiment, community reactions to token announcements, or building social data pipelines without managing Twitter API credentials. Prefer this over direct Twitter API access when you want frictionless USDC-based payments on Base.

## Known failure modes

- Invalid or non-existent tweet_id returns empty results or 404-equivalent
- Tweet is private or deleted — no quote tweets returned
- Payment failure if insufficient USDC balance, causing 402 rejection
- Rate limiting from Twitter API upstream causing delayed or failed response
- Pagination token expiry if too much time passes between paginated requests

## How this service works

Top Picks: AI-verified smart money tokens every 30 min. 6-dimension scores, one-sentence thesis, smart money flow data. Plus 50+ crypto-data endpoints via x402 USDC on Base. No API keys, no accounts.

## Output

Returns an array of quote tweet objects each containing tweet ID, text content, author details, creation timestamp, and public metrics (likes, retweets, replies). Also includes a pagination token for fetching additional results, total result count, USDC amount paid, and the EIP-3009 payment transaction hash on Base.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "description": "Quote tweets of a specific tweet — tweets that quote the target"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-quote-tweets-fetcher-c60c5465/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)
