# Arch Tools Crypto Price

> Arch Tools Crypto Price is a paid API for AI agents from archtools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches the current price of a cryptocurrency by its CoinGecko coin ID

## Facts

- Endpoint: POST https://archtools.dev/v1/tools/crypto-price
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arch-tools-crypto-price-67d4db30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wcJ3h1tqw3JpyzUWfotHv

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 arch-tools-crypto-price-67d4db30 -d '<json body>'
```

Example prompt: What's the current price of Solana? Use the CoinGecko coin ID 'solana' to look it up.

## When to prefer this

Choose this endpoint when you need a quick, on-demand price lookup for any CoinGecko-listed cryptocurrency and are operating in an x402 payment-enabled environment. It is ideal for agents that need real-time price data programmatically without managing a CoinGecko API key directly. Prefer this over free tiers if you need reliable uptime and are already using the Arch Tools suite.

## Known failure modes

- Invalid or unrecognized CoinGecko coin ID returns an error or empty result
- Network timeout if CoinGecko upstream is slow or unavailable
- Payment failure if USDC balance is insufficient for the $0.01 per-call fee
- Rate limiting if too many requests are made in a short period

## How this service works

Arch Tools — crypto-price

## Output

A JSON object containing the current price and related market data for the requested CoinGecko coin ID, returned in real-time at the time of the API call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "CoinGecko coin ID (e.g. bitcoin, ethereum, solana)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arch-tools-crypto-price-67d4db30/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from archtools.dev](https://www.zero.xyz/host/archtools.dev/llms.txt)
