# 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 a whitelisted EVM token by its contract address

## Facts

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

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-6c3b05aa
```

Example prompt: What's the current price of the USDC token at address 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913 on the Cambrian EVM price feed?

## When to prefer this

Use this endpoint when you need a real-time on-chain price for a specific EVM token by contract address and the token is on the Cambrian whitelist. Prefer this over general market data APIs when you need EVM-native pricing directly from blockchain data rather than centralized exchange feeds. Particularly useful for DeFi automation, portfolio valuation, and smart contract triggers on supported chains.

## Known failure modes

- Token address not in whitelist — returns error indicating unsupported token
- Invalid or malformed token address — returns validation error
- Network or RPC connectivity issues — may return timeout or 5xx error
- Token has no current price data available — may return null or empty response

## How this service works

Token Price (Current)

## Output

Returns the current market price of the specified EVM token, identified by its whitelisted contract address. Likely includes price value and potentially timestamp or currency denomination.

## 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-6c3b05aa/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)
