# VIBE Top Picks — Token Historical Cycle Profile by Address

> VIBE Top Picks — Token Historical Cycle Profile by Address is a paid API for AI agents from api.vibe.airforce, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-11).

Returns the full historical Top Picks cycle profile for a specific token address, including forward returns, outcome status, 6-dimension scores, and smart money flow data for every cycle the token appeared in.

## Facts

- Endpoint: GET https://api.vibe.airforce/api/x402/alpha/top-picks/%7Baddress%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-11
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-top-picks-token-historical-cycle-profile-by-address-ffd0e466
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VLf50VF1250UDcVmqZtiX

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-top-picks-token-historical-cycle-profile-by-address-ffd0e466
```

Example prompt: Pull the full VIBE Top Picks history for token 0x4d224452801aced8b2f0aebe155379bb5d594381 — I want to see every cycle it appeared in, the vibe scores, thesis, and how it performed at 24h and 7d.

## When to prefer this

Choose this endpoint when you need the complete historical track record of a specific token across all VIBE Top Picks cycles, including forward return performance and AI-scored outcomes. It is ideal for due diligence, backtesting smart money signals, or post-trade review. Prefer sibling endpoints if you only need the current top picks list across all tokens rather than a deep profile of one specific address.

## Known failure modes

- Token address not found in Top Picks history — returns empty cycles array or success:false
- Invalid or malformed Ethereum/contract address — likely 400 or error response
- Insufficient USDC payment via x402 — payment rejected, request not fulfilled
- Token never appeared in VIBE Top Picks — empty dataset with success:true but no cycles
- Network or Base chain payment processing delay causing timeout

## 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 full token profile containing an array of historical Top Picks cycles, each with: discovery timestamp, chain, tier, vibe_score, market_cap_usd, volume_24h_usd, sub_scores (flow, price), price_position, one-sentence AI thesis, exit_status (win/loss/marginal/pending), and forward performance returns at 1h, 6h, 24h, 48h, 72h, and 7d. Also includes a summary rollup with total_cycles, last_status, and avg/best/worst 24h return, plus payment metadata (tx_hash, amount_paid, buyer_address).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "data": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "cycles": {
         "type": "array",
         "items": {
          "type": "object",
          "description": "One historical cycle for the token: discovered_at, chain, tier, vibe_score, market_cap_usd, volume_24h_usd, sub_scores (flow, price), price_position, thesis, exit_status (win/loss/marginal/pending), is_win, performance (return_1h/6h/24h/48h/72h/7d_pct, peak/trough_return_pct, price_at_discovery)"
         }
        },
        "summary": {
         "type": "object",
         "description": "Rollup across cycles: total_cycles, last_status, avg/best/worst 24h return"
        },
        "token_address": {
         "type": "string",
         "description": "Token contract/mint address (lowercased)"
        }
       },
       "description": "Profile payload"
      },
      "meta": {
       "type": "object",
       "description": "Response metadata: updated_at, source, price_usdc"
      },
      "success": {
       "type": "boolean",
       "description": "True when the profile was served"
      },
      "tx_hash": {
       "type": "string",
       "description": "EIP-3009 payment transaction hash on Base"
      },
      "amount_paid": {
       "type": "number",
       "description": "Amount paid for this request in USDC"
      },
      "payment_mode": {
       "enum": [
        "x402",
        "credit"
       ],
       "type": "string",
       "description": "How this request was paid: x402 (on-chain) or credit (API key)"
      },
      "buyer_address": {
       "type": "string",
       "description": "Ethereum address that paid for this request"
      }
     },
     "description": "Full token profile — every historical Top Picks cycle for one token with forward returns and outcome status, joined from top_picks + top_picks_performance"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "description": "Full token profile — every historical Top Picks cycle for one token with forward returns and outcome status, joined from top_picks + top_picks_performance"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-top-picks-token-historical-cycle-profile-by-address-ffd0e466/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)
