# WhatChuNeed Token Market Data

> WhatChuNeed Token Market Data is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Returns cryptocurrency market data including ATH, market cap, 24h volume, and supply metrics for a given coin symbol.

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/token/market
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-token-market-data-5839d17a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_335VDxA6gLEXTI3DzsVxn

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 whatchuneed-token-market-data-5839d17a -d '<json body>'
```

Example prompt: What are the current market stats for Bitcoin — I want to see the all-time high, how far it is from ATH, market cap, 24h volume, and circulating supply.

## When to prefer this

Choose this endpoint when you need structured cryptocurrency market data — especially ATH metrics and supply figures — in a single pay-per-call request without a recurring API subscription. Useful for agents that need on-demand crypto stats without maintaining a CoinGecko or CoinMarketCap API key.

## Known failure modes

- Unknown or unsupported coin symbol returns an error or empty response
- Misspelled coin ticker may return no data
- Payment of 0.15 USDC required per call via x402 protocol; missing payment results in 402 error
- Stale data possible if underlying data source is not updated in real-time

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

A JSON object with the coin symbol, all-time high price, ATH change percentage (how far current price is from ATH), market cap, 24-hour trading volume, total supply, and circulating supply.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "coin"
 ],
 "properties": {
  "coin": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ath": {
   "type": "number"
  },
  "coin": {
   "type": "string"
  },
  "ath_change": {
   "type": "number"
  },
  "market_cap": {
   "type": "number"
  },
  "volume_24h": {
   "type": "number"
  },
  "total_supply": {
   "type": "number"
  },
  "circulating_supply": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-token-market-data-5839d17a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
