# Cambrian Solana Token Price (Current)

> Cambrian Solana 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 Solana token given its on-chain program address (base58).

## Facts

- Endpoint: GET https://x402.cambrian.org/api/v1/solana/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-solana-token-price-current-fe81d473
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gSpGdvVbq6kKArCW43Hdg

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-solana-token-price-current-fe81d473
```

Example prompt: What's the current price of SOL? Its token address on Solana is So11111111111111111111111111111111111111112.

## When to prefer this

Use this endpoint when you need the current price of a specific Solana token and have its on-chain base58 program address. Prefer this over generic crypto price APIs when you are working within the Solana ecosystem and need a pay-per-use, agent-friendly endpoint that integrates with the x402 payment protocol.

## Known failure modes

- Invalid or malformed base58 token address returns a 400 or validation error
- Token address not recognized or not supported returns a not-found or empty response
- Network or RPC connectivity issues to Solana may cause timeouts
- Payment failure (insufficient USDC balance or x402 protocol error) blocks the request
- Rate limiting may occur under high request volume

## How this service works

Token Price (Current)

## Output

Returns the current market price of the specified Solana token, identified by its base58 program address. Typically includes the price value in a standard currency (e.g. USD) at the time of the request.

## 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",
     "required": [
      "token_address"
     ],
     "properties": {
      "token_address": {
       "type": "string",
       "example": "So11111111111111111111111111111111111111112",
       "pattern": "^[1-9A-HJ-NP-Za-km-z]{32,44}$",
       "description": "The Solana token program address (base58 string)."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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