# Xona Agent Solana Token Discovery

> Xona Agent Solana Token Discovery is a paid API for AI agents from api.xona-agent.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Discovers SPL tokens on the Solana blockchain and retrieves on-chain metadata such as mint address, symbol, total supply, and related token attributes.

## Facts

- Endpoint: POST https://api.xona-agent.com/token/solana-discovery
- 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/api-xona-agent-com-1d863a54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8MTUkTYmMVj9IAW1bFxiN

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 api-xona-agent-com-1d863a54 -d '<json body>'
```

Example prompt: Can you look up the on-chain metadata for the Solana SPL token with symbol 'BONK' — I need its mint address, total supply, and any other attributes available on-chain?

## When to prefer this

Use this endpoint when you need to resolve or verify Solana SPL token metadata directly from on-chain sources, especially when you need the authoritative mint address, supply figures, or token attributes for a given symbol or token name. Prefer this over off-chain token lists when accuracy and on-chain provenance matter.

## Known failure modes

- Token not found on Solana — returns empty result or 404-like error
- Invalid or missing input fields — returns validation error
- Solana RPC unavailability causing timeout or 503 error
- Ambiguous token name matching multiple tokens — may return multiple results or require disambiguation
- Rate limiting or payment failure via x402 — returns 402 Payment Required

## How this service works

Discover SPL tokens on Solana and retrieve on-chain metadata (mint, symbol, supply, and related attributes).

## Output

Returns on-chain metadata for the discovered SPL token(s), including the mint address, token symbol, total supply, decimals, and other relevant on-chain attributes sourced directly from the Solana blockchain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-xona-agent-com-1d863a54/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.xona-agent.com](https://www.zero.xyz/host/api.xona-agent.com/llms.txt)
