# whatchuneed Token Price Lookup

> whatchuneed Token Price Lookup 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-14).

Returns the current price, currency, and 24-hour change for a given cryptocurrency token by coin ID or symbol

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/token/price
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-token-price-lookup-b0c663d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wDsrSkjzd5W3Q6Zb2Ue4F

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

Example prompt: What's the current price of bitcoin in USD and how much has it moved in the last 24 hours?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call cryptocurrency price lookup without committing to a subscription. It is well-suited for agents that need spot prices and 24h change data for a single coin at a time, especially in workflows where crypto price context is needed occasionally rather than at high frequency.

## Known failure modes

- Invalid or unrecognized coin ID returns an error or empty result
- Unsupported vs_currency value may cause a bad request response
- Downstream price data provider outage may result in stale or failed responses
- Rate limiting or payment failure via x402 protocol blocks the call

## 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

Returns a JSON object with the coin identifier, its current price as a number, the currency it is quoted in, and the 24-hour percentage price change. For example: {coin: 'bitcoin', price: 67432.10, currency: 'usd', change_24h: -2.35}.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "coin"
 ],
 "properties": {
  "coin": {
   "type": "string",
   "description": "Coin ID or symbol (e.g. bitcoin, ethereum)"
  },
  "vs_currency": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "coin": {
   "type": "string"
  },
  "price": {
   "type": "number"
  },
  "currency": {
   "type": "string"
  },
  "change_24h": {
   "type": "number"
  }
 }
}
```

## More

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