SENDY

Mint trades

Wallet-scoped transactions for a single mint—the same conceptual data as viewing a coin and filtering to “your swaps”. Both the mint and wallet must pass the usual eligibility checks.

Route

POST /api/v2/sdk/wallet/mint-trades

Body

{
  "address": "<token mint>",
  "walletAddress": "<solana address>"
}

Response

JSON payload from the coin service user-transaction route (swap rows and metadata).

Examples

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

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

const res = await client.walletMintTrades({
  walletAddress: 'YOUR_WALLET',
  address: 'TOKEN_MINT',
});