# Cambrian EVM Token Current Price

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

Returns the current price for a given EVM token address using on-chain and off-chain financial data

## Facts

- Endpoint: GET https://x402.cambrian.network/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-76a95db3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W1R26Evu2_SO0rrltWbUJ

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-76a95db3
```

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

## When to prefer this

Use this endpoint when you need real-time price data for a specific EVM token by contract address and the token is in the Cambrian whitelist. Prefer this over generic DEX price APIs when you want combined on-chain and off-chain financial intelligence with a simple pay-per-call model via x402.

## Known failure modes

- token_address not in whitelist — returns error indicating unsupported token
- missing token_address query parameter — returns 400 or schema validation error
- payment not fulfilled via x402 protocol — returns 402 Payment Required
- network or upstream data feed unavailable — returns 5xx error
- malformed token address (missing 0x prefix or wrong length) — returns validation error

## How this service works

Token price (current); requires token_address query per 402 schema

## Output

Returns the current price of the specified EVM token, combining on-chain and off-chain financial intelligence to reflect its real-time market value.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "token_address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913"
  }
 }
}
```

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cambrian-76a95db3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.cambrian.network](https://www.zero.xyz/host/x402.cambrian.network/llms.txt)
