# VIBE Twitter Tweet Lookup by ID

> VIBE Twitter Tweet Lookup by ID 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 a single tweet by its ID, returning full text, author profile, and engagement metrics, paid via x402 USDC microtransaction.

## Facts

- Endpoint: GET https://api.vibe.airforce/api/x402/vibe-tools/twitter/tweet/%7Btweet_id%7D
- 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-twitter-tweet-lookup-by-id-03e8d345
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3SWKT8vf0p63yUSfeZWEI

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-twitter-tweet-lookup-by-id-03e8d345
```

Example prompt: Can you pull up the full details of tweet 1234567890123456789 — I want to see the text, who posted it, their follower count, and how many likes and retweets it got?

## When to prefer this

Choose this endpoint when you need to retrieve a specific tweet by its ID without setting up a Twitter developer account or managing API keys, and you are already operating in the x402 USDC micropayment ecosystem on Base. Ideal for crypto research agents that need to validate or enrich tweet data (author credibility, engagement) as part of a broader smart money or social signal workflow on the VIBE platform.

## Known failure modes

- Invalid or malformed tweet ID returns an error response
- Tweet has been deleted or is private/protected — endpoint may return 404 or empty data
- Rate limiting or payment failure if USDC balance is insufficient
- Incorrect tweet_id format in URL path parameter causes request failure
- Tweet from a suspended account may not be retrievable

## 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 a JSON object with the tweet's unique ID, full text content, author profile (name, username, profile image URL, verified status, followers count), creation timestamp in UTC, public engagement metrics (retweet count, reply count, like count, quote count, impression count), and the EIP-3009 Base transaction hash confirming the USDC micropayment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "data": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "description": "Tweet unique identifier"
      },
      "text": {
       "type": "string",
       "description": "Tweet text content"
      },
      "author": {
       "type": "object",
       "description": "Author profile: name, username, profile_image_url, verified, followers_count"
      },
      "tx_hash": {
       "type": "string",
       "description": "EIP-3009 payment transaction hash on Base"
      },
      "created_at": {
       "type": "string",
       "format": "date-time",
       "description": "Tweet creation timestamp (UTC)"
      },
      "amount_paid": {
       "type": "number",
       "description": "Amount paid for this request in USDC"
      },
      "public_metrics": {
       "type": "object",
       "description": "Engagement: retweet_count, reply_count, like_count, quote_count, impression_count"
      }
     },
     "description": "Single tweet by ID with full text, author profile, and engagement metrics"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "description": "Single tweet by ID with full text, author profile, and engagement metrics"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-twitter-tweet-lookup-by-id-03e8d345/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)
