# Twitter/X Recent Tweet Search

> Twitter/X Recent Tweet Search 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-13).

Searches recent tweets (last 7 days) by keyword or hashtag, returning tweets with author profiles and engagement metrics.

## Facts

- Endpoint: GET https://api.vibe.airforce/api/x402/vibe-tools/twitter/search
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-vibe-airforce-ed4a0eee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ni_dgGmiHXWoAbjg19Xis

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-ed4a0eee
```

Example prompt: Search recent tweets from the last 7 days mentioning 'artificial intelligence regulation' and return up to 50 results with author info and engagement numbers.

## When to prefer this

Use this endpoint when you need to find real-time public discourse on Twitter/X around a specific keyword, hashtag, or topic from the past 7 days — especially when you want author context and engagement data alongside tweet content. Prefer this over a tweet volume endpoint when you need actual tweet content, not just counts.

## Known failure modes

- Empty results if no tweets match the query in the last 7 days
- Rate limiting or quota exhaustion returning an error
- Invalid max_results value outside the 10-100 range causing a validation error
- Payment failure (x402) if USDC balance is insufficient
- Query too broad returning irrelevant or low-quality results

## 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 list of recent tweets (up to 100) matching the search query, each including tweet text, author profile details (username, bio, follower counts), and engagement metrics (likes, retweets, replies), covering the last 7 days.

## Example request

```json
{
 "query": "artificial intelligence",
 "max_results": 25
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Search query (keyword or hashtag)"
  },
  "max_results": {
   "type": "integer",
   "description": "Max results (10-100)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "description": "Search recent tweets by keyword (last 7 days) with author profiles and engagement metrics"
}
```

## More

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