# VIBE Tweet Liking Users Lookup

> VIBE Tweet Liking Users 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 liked a specific tweet, paid per-call via USDC on Base

## Facts

- Endpoint: GET https://api.vibe.airforce/api/x402/vibe-tools/twitter/tweet/%7Btweet_id%7D/liking-users
- 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-tweet-liking-users-lookup-65c71825
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rZqViwedkhkIcu3D4UMoq

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-tweet-liking-users-lookup-65c71825
```

Example prompt: Can you pull the list of users who liked tweet ID 1234567890123456789 so I can see who engaged with it?

## When to prefer this

Choose this endpoint when you need structured user-profile data for accounts that liked a specific tweet, paid per-call without needing Twitter API credentials or developer accounts. Prefer it over direct Twitter API access when you want a simple USDC micropayment model (x402 on Base) with no key management, or when building agents that need to audit tweet engagement audiences programmatically.

## Known failure modes

- Invalid or non-existent tweet_id returns empty users array or 404-equivalent error
- Tweet is from a private account — no liking users returned due to access restrictions
- Payment failure on Base network results in 402 response and no data returned
- Rate limits on the underlying Twitter API cause upstream errors
- Expired or invalid pagination token causes pagination to fail
- Tweet has zero likes — returns empty array with total_results: 0

## 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 array of user profile objects (id, name, username, verified status, profile_image_url) for all accounts that liked the specified tweet, along with total_results count, a next_token for pagination, the EIP-3009 transaction hash confirming the USDC payment on Base, and the amount_paid in USDC.

## 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 liked: 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 liking users returned"
      }
     },
     "description": "Users who liked a specific tweet — paginated list with profiles"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-tweet-liking-users-lookup-65c71825/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)
