# GetDigitalCraft Solana Balance

> GetDigitalCraft Solana Balance is a paid API for AI agents from x402render-u5vwpxpyua-uc.a.run.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns the SOL balance for any Solana wallet address, and optionally the balance of a specific SPL or Token-2022 mint held by that address

## Facts

- Endpoint: GET https://x402render-u5vwpxpyua-uc.a.run.app/solana-balance
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/getdigitalcraft-solana-balance-7aa5e8e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dVBma9dd6sGXPGL6GEfG6

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 getdigitalcraft-solana-balance-7aa5e8e1
```

Example prompt: What's the SOL balance on wallet 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU, and also tell me how many USDC (mint EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v) it holds?

## When to prefer this

Use this endpoint when you need a quick, on-demand SOL or SPL/Token-2022 token balance for a specific Solana wallet address. It is ideal for pre-flight checks before transactions, portfolio display, treasury monitoring, or any agentic workflow that needs to verify on-chain balances without running a full Solana node or setting up RPC infrastructure. Prefer this over generic blockchain explorers when you need a clean, machine-readable balance response.

## Known failure modes

- Invalid or malformed Solana address returns an error or empty result
- Mint address not held by the wallet returns a zero balance or not-found response
- Network congestion on Solana RPC may cause timeout or stale data
- Missing required address parameter returns a 400-level error
- Token-2022 mints with non-standard extensions may not decode correctly

## How this service works

SOL balance for any Solana address, plus that address's balance of a specific SPL or Token-2022 mint when one is named

## Output

Returns the native SOL balance of the queried Solana address (in lamports or SOL), and when a mint address is provided, also returns the balance of that SPL or Token-2022 token held by that address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/getdigitalcraft-solana-balance-7aa5e8e1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402render-u5vwpxpyua-uc.a.run.app](https://www.zero.xyz/host/x402render-u5vwpxpyua-uc.a.run.app/llms.txt)
