# 24K Labs Crypto Price Lookup

> 24K Labs Crypto Price Lookup is a paid API for AI agents from api.24klabs.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Returns current price, 24-hour change, and market cap for one or more cryptocurrencies by CoinGecko coin ID.

## Facts

- Endpoint: POST https://api.24klabs.ai/api/v1/crypto-price
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/24k-labs-crypto-price-lookup-54fc69b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HY5z29QJ09g5XAg6jEekW

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 24k-labs-crypto-price-lookup-54fc69b6 -d '<json body>'
```

Example prompt: What's the current price, 24-hour change, and market cap for Bitcoin and Ethereum right now?

## When to prefer this

Use this endpoint when you need quick, lightweight cryptocurrency price lookups (price, 24h change, market cap) by CoinGecko coin ID and don't need deep historical data, order books, or exchange-specific pricing. Ideal for portfolio snapshots, daily briefings, or simple price checks at $0.003 per call.

## Known failure modes

- Invalid or unrecognized CoinGecko coin ID returns an error or empty result
- CoinGecko free API rate limits may cause transient failures under heavy load
- Stale or delayed data if CoinGecko upstream is slow
- Coin IDs must match CoinGecko's naming convention (e.g. 'bitcoin' not 'BTC')

## How this service works

Current price, 24h change, and market cap for coins by id (CoinGecko free API).

## Output

Returns the current USD price, percentage change over the past 24 hours, and market capitalization for each requested coin ID. Data is sourced from the CoinGecko free API tier.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "vs": {
   "type": "string"
  },
  "ids": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "bitcoin": {
   "usd": 60000
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/24k-labs-crypto-price-lookup-54fc69b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.24klabs.ai](https://www.zero.xyz/host/api.24klabs.ai/llms.txt)
