# 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 by its contract address

## Facts

- Endpoint: GET https://x402.cambrian.org/api/v1/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-172ef2ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uncRpdeKGcFbLTobijoTe

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-172ef2ce
```

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

## When to prefer this

Use this endpoint when you need the current on-chain price of a specific EVM token by its contract address, particularly for whitelisted tokens on supported EVM chains. Prefer this over generic price APIs when operating in an EVM/DeFi context and when you need a pay-per-call model without subscription overhead.

## Known failure modes

- Token address not in whitelist — returns error or empty result
- Invalid or malformed token address format — validation error
- Token contract address does not exist on supported chain — not found error
- Network or provider unavailability — 5xx error
- Missing required token_address parameter — bad request error

## How this service works

Token Price (Current)

## Output

Returns the current price of the specified EVM token, identified by its on-chain contract address. The response reflects real-time or near-real-time market pricing data for whitelisted tokens.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "token_address": {
       "type": "string",
       "default": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
       "example": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
       "description": "Address of the token prefixed with 0x. See white listed tokens"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cambrian-evm-token-price-current-172ef2ce/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)
