# By Symbol – Token Price Lookup

> By Symbol – Token Price Lookup is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns current token prices for one or more tokens identified by symbol on a specified blockchain network via Alchemy

## Facts

- Endpoint: POST https://stablecrypto.dev/api/alchemy/prices/by-symbol
- 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/by-symbol-token-price-lookup-a057095a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__Zg8HZlEbU7sLX3GZ-hLR

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 by-symbol-token-price-lookup-a057095a -d '<json body>'
```

Example prompt: Can you look up the current prices of ETH and USDC on eth-mainnet using Alchemy's price feed?

## When to prefer this

Use this endpoint when you need fast, on-demand price lookups for one or more crypto tokens by their ticker symbols (e.g. ETH, USDC, WBTC) on a specific EVM-compatible network. Prefer this over address-based lookups when you know the symbol but not the contract address. It is ideal for portfolio valuation, DeFi analytics, and real-time price checks across networks supported by Alchemy.

## Known failure modes

- Invalid or unsupported network slug returns an error
- Unknown or unsupported token symbol returns empty or error response
- Malformed comma-separated symbols list causes a 400 bad request
- Network connectivity or Alchemy upstream outage causes a 502/503
- Missing required fields (network or symbols) returns a validation error

## How this service works

Pay-per-request access to CoinGecko, DefiLlama, Alchemy, and Etherscan APIs. No auth, no subscriptions.

## Output

A JSON object keyed by token symbol containing current price data for each requested token on the specified network, sourced from Alchemy's pricing infrastructure.

## Example request

```json
{
 "network": "eth-mainnet",
 "symbols": "ETH,USDC"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "network": {
   "type": "string",
   "description": "Alchemy network slug, e.g. eth-mainnet, base-mainnet"
  },
  "symbols": {
   "type": "string",
   "description": "Comma-separated token symbols (e.g. ETH,USDC)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/by-symbol-token-price-lookup-a057095a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablecrypto.dev](https://www.zero.xyz/host/stablecrypto.dev/llms.txt)
