# Coin Railz Token Price Lookup

> Coin Railz Token Price Lookup is a paid API for AI agents from coinrailz.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns current token price with 24-hour change, trading volume, and market cap sourced from CoinGecko and DEX Screener

## Facts

- Endpoint: POST https://coinrailz.com/x402/service/token-price
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coin-railz-token-price-lookup-0c30a52c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MwXpUQ_Crghuf-QgWlT9f

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 coin-railz-token-price-lookup-0c30a52c -d '<json body>'
```

Example prompt: What's the current price, 24-hour change, and market cap for the token at contract address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum?

## When to prefer this

Use this endpoint when you need real-time token price data including 24h change, volume, and market cap for a specific token identified by its on-chain contract address and blockchain network. Prefer this over generic market APIs when you need DEX-level coverage for tokens not listed on major centralized exchanges, or when you want data aggregated from both CoinGecko and DEX Screener simultaneously.

## Known failure modes

- Invalid or unrecognized contract address returns an error or empty data
- Unsupported chain identifier causes a validation error
- Token not indexed by CoinGecko or DEX Screener returns no data
- Payment of $0.25 USDC not processed results in HTTP 402 response
- Network timeout from upstream data provider causes delayed or failed response

## How this service works

Token pricing with 24h change, volume, market cap from CoinGecko/DEX Screener

## Output

A structured response containing the token's current price, percentage change over the last 24 hours, trading volume, and market cap, aggregated from CoinGecko and DEX Screener data sources.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "chain",
  "tokenAddress"
 ],
 "properties": {
  "chain": {
   "type": "string",
   "description": "Blockchain network"
  },
  "tokenAddress": {
   "type": "string",
   "description": "Token contract address"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coin-railz-token-price-lookup-0c30a52c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from coinrailz.com](https://www.zero.xyz/host/coinrailz.com/llms.txt)
