# North Desk Solana Token Lookup

> North Desk Solana Token Lookup is a paid API for AI agents from annotated-pentium-lib-storm.trycloudflare.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns supply, decimals, and current USD price for a Solana token given its mint address.

## Facts

- Endpoint: GET https://annotated-pentium-lib-storm.trycloudflare.com/v1/token
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/north-desk-solana-token-lookup-527121b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WZoXqU0d7yc7lqKzxyowa

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 north-desk-solana-token-lookup-527121b7
```

Example prompt: What's the current USD price, total supply, and decimal places for the Solana token with mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v?

## When to prefer this

Use this endpoint when you need on-chain Solana token data — supply, decimals, and live USD price — for a specific SPL token mint address. Prefer it over general crypto price APIs when you specifically need Solana-native data including decimal precision for raw amount calculations. Ideal for DeFi agents, wallet dashboards, and swap calculators operating on Solana mainnet.

## Known failure modes

- Invalid or malformed mint address returns an error — base58 format required
- Unknown or unlisted mint address may return null or empty price if not indexed
- Network or RPC congestion on Solana mainnet may cause delayed or stale price data
- Payment failure (insufficient USDC balance) blocks the request
- Newly launched tokens with no price feed may return null USD price

## How this service works

Solana token lookup (supply, decimals, USD price). $0.01 USDC on Solana mainnet.

## Output

Returns structured data for the queried Solana token including: total supply (raw or normalized), number of decimal places, and current USD price. Useful for computing human-readable balances, evaluating market cap, and pricing token amounts.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mint": {
   "type": "string",
   "description": "Solana mint address (base58)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/north-desk-solana-token-lookup-527121b7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from annotated-pentium-lib-storm.trycloudflare.com](https://www.zero.xyz/host/annotated-pentium-lib-storm.trycloudflare.com/llms.txt)
