# VIBE Twitter Tweet Retweeted-By Lookup

> VIBE Twitter Tweet Retweeted-By Lookup 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).

Returns a paginated list of user profiles who retweeted a specific tweet, paid via x402 USDC microtransaction on Base.

## Facts

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

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-retweeted-by-lookup-1bf34f37
```

Example prompt: Can you pull the list of users who retweeted tweet ID 1234567890123456789? I want to see who shared it, including their usernames and whether they're verified.

## When to prefer this

Use this endpoint when you need to programmatically retrieve the list of Twitter users who retweeted a specific tweet without setting up a Twitter developer account or managing API keys. It is ideal for crypto/Web3 contexts where USDC micropayments on Base are already integrated, and when you want lightweight, per-call billing. Prefer this over direct Twitter API access when you want zero-setup social data retrieval as part of a broader crypto analytics workflow on the VIBE platform.

## Known failure modes

- Invalid or non-existent tweet_id returns empty result or error
- Tweet may have been deleted, making retweeter data unavailable
- Private/protected tweets may not return retweeter data
- Rate limits on the underlying Twitter API may cause errors
- Payment failure on Base network prevents the request from being fulfilled
- Pagination token expiry may break multi-page traversal

## 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

A paginated list of Twitter user profiles who retweeted the specified tweet, each including user ID, display name, username, verified status, and profile image URL. Also returns a pagination token for fetching subsequent pages, total result count, the USDC amount paid, and the EIP-3009 transaction hash on Base for payment verification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "data": {
     "type": "object",
     "properties": {
      "users": {
       "type": "array",
       "items": {
        "type": "object"
       },
       "description": "User profiles who retweeted: id, name, username, verified, profile_image_url"
      },
      "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 users returned"
      }
     },
     "description": "Users who retweeted a specific tweet — paginated list with profiles"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "description": "Users who retweeted a specific tweet — paginated list with profiles"
}
```

## More

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