# VIBE Twitter Tweet Volume Counter

> VIBE Twitter Tweet Volume Counter 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-13).

Returns total tweet count and time-series breakdown for a given search query or hashtag on Twitter/X

## Facts

- Endpoint: GET https://api.vibe.airforce/api/x402/vibe-tools/twitter/counts
- Price: $0.005/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-05830c3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HHEOWz7xAAz_gFbowMhH6

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-05830c3c
```

Example prompt: How many tweets have been posted about 'Bitcoin ETF' recently? Pull up to 100 results broken down by time.

## When to prefer this

Use this endpoint when you need quantitative tweet volume data (counts over time) rather than actual tweet content. Prefer this over the tweet search endpoint when the goal is trend analysis, measuring buzz, or comparing keyword popularity rather than reading individual tweets.

## Known failure modes

- Empty or invalid query string returns error or zero results
- max_results outside 10-100 range may return validation error
- Query matches no tweets returns zero counts
- Rate limiting or payment failure returns 402/429 error
- Twitter API downtime causes service unavailability

## 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 the total count of tweets matching the search query, along with counts broken down by time granularity (e.g. hourly or daily buckets), enabling trend analysis over the queried period.

## Example request

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

## 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": "Tweet volume for a search query — total and time-series breakdown"
}
```

## More

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