# Multichain Crypto Token Price Lookup

> Multichain Crypto Token Price Lookup is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns real-time prices for up to 25 crypto tokens by ticker or CoinGecko ID, billed per call in USDC via x402

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/crypto/price
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/multichain-crypto-token-price-lookup-ea49d23a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xZ_RLHfbcbCCVxrUpDGaV

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 multichain-crypto-token-price-lookup-ea49d23a -d '<json body>'
```

Example prompt: What are the current prices of ETH, BTC, and SOL right now? I need all three in one shot, no API key required — pay per call.

## When to prefer this

Prefer this endpoint when you need real-time spot prices for well-known tokens across multiple chains in a single batch call, without needing an API key or subscription — especially useful for AI agents that pay per call in USDC on Base, Polygon, Arbitrum, or Solana. Best for lightweight price lookups where you need 1–25 tokens simultaneously. For advanced on-chain analytics like honeypot detection, funding rates, or options greeks, use sibling endpoints from the same suite.

## Known failure modes

- Invalid or unrecognized ticker symbols return an error or missing data for that token
- Requesting more than 25 symbols at once may be rejected
- Tokens not listed on CoinGecko may not be found
- Network or upstream price feed outages may cause stale or missing prices
- Payment failure or insufficient USDC balance will block the call

## How this service works

Live crypto & token prices in USD. Send tickers or coingecko ids, e.g. { symbols: ["ETH","USDC","BTC"] }. Real-time on-chain pricing for finance and trading agents.

## Output

Returns real-time price data for each requested token symbol or CoinGecko ID. Typically includes current USD price per token. Supports up to 25 tokens per request. Response is paid per-call at $0.003 USDC settled on-chain via x402 — no API key or account required.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbols"
 ],
 "properties": {
  "symbols": {
   "type": "object",
   "description": "Array of tickers or coingecko ids (1-25), e.g. [\"ETH\",\"BTC\"]"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/multichain-crypto-token-price-lookup-ea49d23a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
