# Alchemy Token Prices by Contract Address

> Alchemy Token Prices by Contract Address is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches current token prices for one or more ERC-20 contract addresses on specified blockchain networks via Alchemy

## Facts

- Endpoint: POST https://stablecrypto.dev/api/alchemy/prices/by-address
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alchemy-token-prices-by-contract-address-55b1f3d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JFQTWLIYaRFpaGss5nHEW

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 alchemy-token-prices-by-contract-address-55b1f3d3 -d '<json body>'
```

Example prompt: What's the current price of the token at contract address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on eth-mainnet?

## When to prefer this

Use this endpoint when you have a specific ERC-20 token contract address and need its current price — especially for newer, obscure, or unlisted tokens that may not appear in name-based lookups. Prefer this over name-based price endpoints when you need precise on-chain contract-level price resolution across multiple EVM networks including eth-mainnet and base-mainnet.

## Known failure modes

- Invalid or unrecognized contract address returns empty or null price data
- Unsupported network slug causes a 400 or error response
- Contract address exists but token has no price feed — returns missing or zero price
- Malformed addresses array causes validation error
- Rate limiting or payment failure returns 402 or 429
- Network slug mismatch between top-level and per-address fields causes inconsistent results

## How this service works

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

## Output

Returns a JSON object mapping each queried contract address to its current price data, including token valuation information sourced from Alchemy's price feeds for the specified network.

## Example request

```json
{
 "network": "eth-mainnet",
 "addresses": [
  {
   "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
   "network": "eth-mainnet"
  }
 ]
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "network": {
   "type": "string",
   "description": "Alchemy network slug, e.g. eth-mainnet, base-mainnet"
  },
  "addresses": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "network",
     "address"
    ],
    "properties": {
     "address": {
      "type": "string",
      "description": "Token contract address"
     },
     "network": {
      "type": "string",
      "description": "Alchemy network slug"
     }
    },
    "additionalProperties": false
   },
   "description": "Token addresses to look up"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alchemy-token-prices-by-contract-address-55b1f3d3/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)
