# Solana Wallet Holdings Lookup via Helius DAS

> Solana Wallet Holdings Lookup via Helius DAS is a paid API for AI agents from x402.ochinimus.app, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-13).

Returns all SPL token and NFT holdings for a given Solana wallet address using the Helius Digital Asset Standard (DAS) API

## Facts

- Endpoint: GET https://x402.ochinimus.app/api/wallet-holdings/:wallet
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-wallet-holdings-lookup-via-helius-das-c28b4ead
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1D6PbjjYQRY7F3gbeMhG7

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 solana-wallet-holdings-lookup-via-helius-das-c28b4ead
```

Example prompt: What tokens and NFTs does Solana wallet 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU hold right now?

## When to prefer this

Use this endpoint when you need a complete on-chain snapshot of all SPL tokens and NFTs in a Solana wallet address, especially when you want Helius DAS-quality metadata. Prefer this over manual RPC calls or other providers when you need reliable digital asset enumeration with rich metadata on Solana.

## Known failure modes

- Invalid or malformed wallet address returns a 400 or empty result
- Wallet with no assets returns an empty holdings list
- Helius DAS API unavailability causes upstream timeout or 502
- Payment not processed results in 402 Payment Required

## How this service works

Solana wallet holdings via Helius DAS

## Output

A list of all digital assets (SPL tokens and NFTs) held by the specified Solana wallet, sourced from Helius DAS — including token mint addresses, amounts/balances, and asset metadata.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-wallet-holdings-lookup-via-helius-das-c28b4ead/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.ochinimus.app](https://www.zero.xyz/host/x402.ochinimus.app/llms.txt)
