SENDY

Wallets

Returns every address you may pass to other wallet routes: your associated wallets and any row on your Tracking list. See Authentication for eligibility rules.

Route

GET /api/v2/sdk/wallets

Headers

  • X-API-Key

Response

  • associatedWallets — addresses from your Sendy profile
  • trackedWalletsid, walletAddress, displayName
  • allAddresses — merged unique list

Examples

wallets
import { SendyClient } from '@mvritz/sendy-sdk';

const client = new SendyClient({
  apiKey: process.env.SENDY_API_KEY!,
});

const res = await client.wallets();