# VAPE Token Intel

> VAPE Token Intel is a paid API for AI agents from vape-x402.vapex402.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a comprehensive token snapshot including current price with confidence score, first-ever-recorded price (oracle-derived age signal), real logo, and optionally protocol fees/revenue, next unlock event, and treasury own-token share.

## Facts

- Endpoint: GET https://vape-x402.vapex402.workers.dev/data/token_intel
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vape-token-intel-5aefb340
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nBKUJHH4-oDxBTI_1vOFK

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 vape-token-intel-5aefb340
```

Example prompt: Give me a full token intel read on 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on Base — I want the current price with confidence score, the first-ever recorded price as an age signal, and the real logo; also pull in fees, revenue, next unlock, and treasury share using the protocol slug 'usdbc'.

## When to prefer this

Choose this endpoint when you need a single comprehensive token data call combining price confidence, oracle-derived age signal, logo, and optionally protocol financials (fees, unlocks, treasury). Prefer it over separate calls when you want a trust-scored price read that is harder to spoof than a DEX pair timestamp, or when you need the first-ever recorded price as a token age anchor alongside current market data.

## Known failure modes

- Invalid or unrecognized token contract address returns an error or empty result
- Unsupported chain slug falls back to Base or returns an error
- Missing required 'address' query parameter returns a 400-level error
- Protocol slug not found omits fees/unlocks/treasury fields rather than failing entirely
- No first-ever price available if token is too new or not indexed by oracle
- Payment failure (x402) if USDC balance is insufficient for the $0.01 fee

## How this service works

VAPE token_intel — A full independent read on one token: current price + a 0-1 confidence score, first-ever-recorded price (an oracle-derived age signal harder to spoof than a DEX pair timestamp), the token's real logo, and — when a protocol slug is given — fees/revenue, the next unlock event, and treasury own-token share.

## Output

Returns current token price with a 0-1 confidence score, the first-ever oracle-recorded price (used as a spoof-resistant age signal), the token's real logo URL, and — when a protocol slug is provided — protocol fees and revenue figures, the next scheduled token unlock event, and the treasury's own-token holding share.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "description": "optional protocol slug to add fees/unlocks/treasury"
      },
      "chain": {
       "type": "string",
       "description": "chain slug, default 'base'"
      },
      "address": {
       "type": "string",
       "description": "token contract address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "logo": "https://...",
  "price": {
   "price": 1.23,
   "symbol": "TKN",
   "confidence": 0.99
  },
  "address": "0x...",
  "first_price": {
   "age_days": 210.5,
   "first_seen_iso": "2025-01-01T00:00:00Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vape-token-intel-5aefb340/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vape-x402.vapex402.workers.dev](https://www.zero.xyz/host/vape-x402.vapex402.workers.dev/llms.txt)
