# DeepNets Solana Wallet Details

> DeepNets Solana Wallet Details is a paid API for AI agents from api.deepnets.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns detailed on-chain information for a given Solana wallet address (base58).

## Facts

- Endpoint: GET https://api.deepnets.ai/api/wallet-details/8LS4zNRNjzM21BtmevdNomJbdwG4E2h67us1UxnCegn2
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepnets-ai-28bb4525
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ox-DjszeWSH6ymyR49y7v

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-deepnets-ai-28bb4525
```

Example prompt: Can you pull up the full on-chain details for Solana wallet 21fNHtcj9R1Y4SAtfVmGKyc7YSv3JcU1mWHcCvWx8mDY — I want to see its balances, token holdings, and any other wallet information available?

## When to prefer this

Use this endpoint when you need a comprehensive snapshot of a Solana wallet's on-chain state, including balances and token holdings. Prefer this over token-specific endpoints when your primary entity of interest is a wallet/account rather than a token mint. Ideal for portfolio analysis, due diligence on a wallet, or enriching wallet-level data in a Solana analytics pipeline.

## Known failure modes

- Invalid or malformed base58 wallet address returns an error response
- Wallet address not found on Solana mainnet returns empty or not-found response
- Network timeout or upstream Solana RPC unavailability causes 5xx error
- Missing required 'address' query parameter causes 400 bad request
- Payment not included or insufficient USDC results in 402 Payment Required

## How this service works

Returns detailed information for a Solana wallet address.

## Output

A JSON object containing detailed information about the queried Solana wallet address, potentially including SOL balance, SPL token holdings, transaction count, associated accounts, and other on-chain 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "example": "21fNHtcj9R1Y4SAtfVmGKyc7YSv3JcU1mWHcCvWx8mDY",
       "description": "Solana wallet address (base58)."
      }
     }
    }
   },
   "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-deepnets-ai-28bb4525/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.deepnets.ai](https://www.zero.xyz/host/api.deepnets.ai/llms.txt)
