# VIBE Token Price Lookup

> VIBE Token Price Lookup is a paid API for AI agents from api.vibe.airforce, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Fetches the current price of an ERC-20 token on a specified EVM network by contract address

## Facts

- Endpoint: POST https://api.vibe.airforce/api/x402/vibe-tools/evm/token-price
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-token-price-lookup-eef96f90
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y6KWSJ6SyeVWoC_eKEdqW

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-token-price-lookup-eef96f90 -d '<json body>'
```

Example prompt: What's the current price of the token at contract address 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 on Ethereum mainnet?

## When to prefer this

Use this endpoint when you need a quick, on-demand price lookup for any ERC-20 token by contract address across EVM chains, especially within a workflow that already uses VIBE's smart money analytics suite. Ideal when you want to avoid API key management and pay per call via USDC on Base.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty result
- Unsupported EVM network name causes a failure response
- Token has no liquidity or price data available — returns null or error
- Payment of 0.012 USDC via x402 protocol fails — request is rejected
- Missing required token_address field returns a validation error

## 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 current market price of the specified ERC-20 token on the requested EVM network, likely including price value and associated token metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "token_address"
 ],
 "properties": {
  "network": {
   "type": "string",
   "description": "EVM network"
  },
  "token_address": {
   "type": "string",
   "description": "ERC-20 token contract address"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "description": "ERC-20 token price in USD with 24h change and market data"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-token-price-lookup-eef96f90/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)
