Activity
Pulls a capped list of recent user activities from the same backing service the app uses for history panes. This is a one-shot REST read; subscribe to Trade stream or Token stream for push updates.
Route
POST /api/v2/sdk/wallet/activity
Body
{
"walletAddress": "<solana address>",
"limit": 50
}limit defaults to 50 and is clamped server-side.
Response
activities— raw activity rows (signatures, token addresses, timestamps, SOL amounts)
Examples
walletActivity
import { SendyClient } from '@mvritz/sendy-sdk';
const client = new SendyClient({
apiKey: process.env.SENDY_API_KEY!,
});
const res = await client.walletActivity({
walletAddress: 'YOUR_WALLET',
limit: 50,
});