# TokenGuard Solana Wallet Lookup

> TokenGuard Solana Wallet Lookup is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns Solana wallet balance, SOL holdings, and all SPL token balances for a given Solana address

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/solana
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-solana-wallet-lookup-8d7d554c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6WmM7F1LKXKrlKDJkJk9G

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 tokenguard-solana-wallet-lookup-8d7d554c -d '<json body>'
```

Example prompt: Can you check the Solana wallet So11111111... and tell me the SOL balance plus all SPL tokens it holds on solana-mainnet?

## When to prefer this

Use this endpoint when you need to retrieve on-chain Solana wallet portfolio data — including SOL balance and all SPL token holdings — for a specific address. Prefer this over generic blockchain explorers when you need structured, machine-readable JSON output suitable for AI agents and DeFi analytics pipelines, and when cost-efficient micropayment access ($0.005/call via x402) is acceptable.

## Known failure modes

- Invalid or malformed Solana address returns an error response
- Wallet address not found on specified network returns empty/null data
- Network unavailable or RPC node downtime causes timeout
- Missing required address parameter returns validation error
- Payment failure via x402 micropayment blocks the request

## How this service works

Solana wallet intelligence via public mainnet RPC (no key). SOL balance, SPL token holdings, activity status. Extends EVM coverage to Solana ecosystem.

## Output

Returns a JSON object with the wallet address, network (e.g. solana-mainnet), SOL balance as a float, a boolean indicating if the wallet is empty, total token count, and an array of token objects each containing a mint address and balance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "description": "Solana wallet address (base58)"
  },
  "include_tokens": {
   "type": "boolean",
   "description": "Include SPL token accounts (default true)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tokens": [
   {
    "mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "balance": 100
   }
  ],
  "address": "So11111111...",
  "network": "solana-mainnet",
  "is_empty": false,
  "sol_balance": 12.5,
  "token_count": 3
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-solana-wallet-lookup-8d7d554c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
