# 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 wallet information for a given Solana wallet address (base58)

## Facts

- Endpoint: GET https://api.deepnets.ai/api/wallet-details/FwooudDAJhfU3CGPjQUf1zv2VRgX1Kj3mh32zyH1A3Wm
- 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-19988b4b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rNSmaoiXzHBmOHURvOkhk

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-19988b4b
```

Example prompt: Can you pull up the wallet details for Solana address FwooudDAJhfU3CGPjQUf1zv2VRgX1Kj3mh32zyH1A3Wm? I want to see what's in it.

## When to prefer this

Use this endpoint when you need to retrieve on-chain wallet details for a specific Solana wallet address in base58 format. Prefer this over token-specific endpoints when your subject is a wallet (not a token mint). Suitable for single wallet lookups at $0.01 USDC per call.

## Known failure modes

- Rate limit exceeded — response may include retry-after timing metadata
- Invalid or malformed base58 wallet address — likely returns an error
- Wallet address not found on-chain — may return empty or null response
- Network timeout or upstream Solana RPC issue

## How this service works

Returns wallet details for a given wallet address. On failure, the current implementation may return rate-limit metadata including retry timing.

## Output

Returns wallet details for the specified Solana base58 wallet address, potentially including balance, token holdings, and metadata. On rate-limit failures, the response may include retry-after timing 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-19988b4b/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)
