# VIBE Twitter User Timeline Fetcher

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

Fetches recent tweets from a specific Twitter user's timeline with pagination support, payable per-call via x402 USDC on Base.

## Facts

- Endpoint: GET https://api.vibe.airforce/api/x402/vibe-tools/twitter/user/%7Buser_id%7D/timeline
- Price: $0.001/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-user-timeline-fetcher-a68fb5f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3zxmuVWF-JgkmgZoyMdnE

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-user-timeline-fetcher-a68fb5f0
```

Example prompt: Fetch the last 50 tweets from Twitter user ID 123456789, starting after tweet ID 9876543210.

## When to prefer this

Choose this endpoint when you need to retrieve recent tweets from a specific Twitter user by their user ID without managing Twitter API credentials or accounts, and you are comfortable paying $0.001 USDC per call via x402 on Base. Ideal for agents performing crypto social signal monitoring, influencer tracking, or smart money commentary analysis as part of a broader VIBE analytics workflow.

## Known failure modes

- Invalid or non-existent user_id returns an error or empty result
- max_results out of range (below 5 or above 100) triggers a validation error
- Insufficient USDC balance or failed x402 payment results in a 402 Payment Required response
- Rate limits on the underlying Twitter API may cause upstream errors
- Invalid since_id or until_id values may return unexpected or empty result sets

## 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 list of recent tweets from the specified user's timeline, including tweet content and metadata, with pagination support via since_id and until_id cursors.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "since_id": {
   "type": "string",
   "description": "Return results after this tweet ID"
  },
  "until_id": {
   "type": "string",
   "description": "Return results before this tweet ID"
  },
  "max_results": {
   "type": "integer",
   "description": "Max results (5-100)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "description": "Recent tweets from a user's timeline with pagination support"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-twitter-user-timeline-fetcher-a68fb5f0/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)
