# Crypto Token Price Lookup via CoinPaprika

> Crypto Token Price Lookup via CoinPaprika is a paid API for AI agents from api.kadec0.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns live price, market cap, 24h volume, and 24h change for one or more crypto tokens by coin ID or symbol, sourced from CoinPaprika, with no API key required.

## Facts

- Endpoint: GET https://api.kadec0.xyz/v1/token-price
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-token-price-lookup-via-coinpaprika-f1ddd654
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1yDzEOrNbikjyzZRKtcfB

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 crypto-token-price-lookup-via-coinpaprika-f1ddd654
```

Example prompt: What are the current price, market cap, and 24-hour change for bitcoin and ethereum right now?

## When to prefer this

Prefer this endpoint when you need keyless, real-time crypto price data (price, market cap, volume, 24h change) for one or more tokens by ID or symbol, especially when you want CoinPaprika's data without managing your own API credentials. Best for quick lookups and monitoring; not suited for historical price series or non-USD quote currencies.

## Known failure modes

- Unknown coin ID or symbol returns an error or empty result
- Only USD is supported as the quote currency; other currencies may not be available
- Comma-separated ID/symbol list malformed causes a 400 bad request
- CoinPaprika upstream outage causes stale or missing data
- Payment failure (x402) returns 402 before any data is served

## How this service works

Crypto token price and market data. Returns the live price of one or many tokens by coin id or ticker symbol, in a chosen vs-currency, with market cap, 24-hour volume, and 24-hour price change. For crypto price lookups, portfolio valuation, and market data feeds. Keyless, via CoinPaprika.

## Output

A JSON object mapping each requested coin ID or symbol to its live USD price, market capitalization, 24-hour trading volume, and 24-hour percentage price change, sourced from CoinPaprika.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ids"
     ],
     "properties": {
      "vs": {
       "type": "string",
       "default": "usd",
       "description": "quote currency (usd only)"
      },
      "ids": {
       "type": "string",
       "description": "comma list of coin ids or symbols (e.g. bitcoin,ethereum or btc,eth)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-token-price-lookup-via-coinpaprika-f1ddd654/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.kadec0.xyz](https://www.zero.xyz/host/api.kadec0.xyz/llms.txt)
