# Cambrian EVM Token Price (Current)

> Cambrian EVM Token Price (Current) is a paid API for AI agents from x402.cambrian.org, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns the current price of an EVM token given its contract address

## Facts

- Endpoint: GET https://x402.cambrian.org/evm/price-current
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cambrian-evm-token-price-current-be42928f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o6yICVr4wbCIFWqkMZoJW

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 cambrian-evm-token-price-current-be42928f
```

Example prompt: What is the current price of the USDC token at contract address 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913 on the EVM?

## When to prefer this

Use this endpoint when you need the current real-time price of a specific EVM-compatible token by its contract address, especially when dealing with whitelisted tokens on chains supported by Cambrian. Prefer this over generic price APIs when operating in an x402 micropayment context or when integrating with other Cambrian EVM endpoints like block number or supported chains.

## Known failure modes

- Token address not in whitelist — returns error or empty result
- Invalid or malformed token address format — validation error
- Token address not prefixed with 0x — rejected by schema
- Network/upstream pricing data unavailable — service error
- Rate limiting or payment failure — 402 or 429 error

## How this service works

Pay-per-use blockchain and social data for autonomous agents.

## Output

Returns the current price of the specified EVM token, likely as a numeric value in USD or a reference currency, based on the token's contract address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "additionalProperties": true
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "array"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cambrian-evm-token-price-current-be42928f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.cambrian.org](https://www.zero.xyz/host/x402.cambrian.org/llms.txt)
