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);