Basic Wallet Information API

Documentation
API Reference

Everything you need to integrate Dritan's low-latency Solana market data into your trading infrastructure.

DocsAPI ReferenceBasic Wallet Information
API Reference

Basic Wallet Information

High-level wallet totals and holdings count

Returns a lightweight wallet summary including totals and holdings counts.

Endpoint#

GET /wallet/summary/:wallet

Request (curl)#

curl -H "x-api-key: YOUR_KEY" \
  https://us-east.dritan.dev/wallet/summary/H8sH...Wallet

Request (TypeScript, SDK)#

import { DritanClient } from "dritan-sdk";

const client = new DritanClient({ apiKey: "YOUR_KEY" });
const res = await client.getBasicWalletInformation("H8sH...Wallet");
console.log(res.totalSol, res.totalValue, res.holdings);
Last updated: 2/25/2026Edit on GitHub