# VIBE Twitter User Timeline by Numeric ID

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

Fetches the recent tweet timeline for a specific Twitter/X user identified by numeric user ID 295218901

## Facts

- Endpoint: GET https://api.vibe.airforce/api/x402/vibe-tools/twitter/user/295218901/timeline
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-vibe-airforce-ff454d11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L305CV3MiPw-P51DGWtYF

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 api-vibe-airforce-ff454d11
```

Example prompt: Pull the recent tweet timeline for the Twitter user with ID 295218901 and show me what they've been posting.

## When to prefer this

Use this endpoint when you need the tweet timeline for the specific hardcoded user ID 295218901 (a fixed user), and you want a simple POST-based retrieval via the VIBE proxy with per-call micropayment via x402. Prefer this over the general Twitter search endpoint when you already know the exact numeric user ID and want their personal timeline rather than keyword-matched tweets.

## Known failure modes

- User ID not found or account suspended — empty or error response
- Rate limiting from upstream Twitter/X API
- Payment failure via x402 protocol — 402 response if USDC not provided
- Account is private — timeline may be inaccessible
- Network timeout reaching Twitter/X upstream

## How this service works

Get recent tweets from a user's timeline. Supports pagination with since_id/until_id.

## Output

Returns the recent tweets posted by the specified Twitter/X user (ID 295218901), including tweet text, engagement metrics, and author profile information, wrapped in a data object.

## Example request

```json
{
 "input": {
  "body": {}
 }
}
```

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-vibe-airforce-ff454d11/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)
