Skip to main content
The first half of “what did this wallet do?” This endpoint returns up to 50 recent signatures for any wallet, each annotated with slot, block time, and whether it succeeded. Feed the signatures into Decode Tx to build a full labeled activity feed without touching an RPC node.
Paid endpoint. Pass your key in the x-api-key header. See Get an API key.

Why agents use this

  • Pagination-free recent history. One call gets you the freshest N signatures, sorted newest first.
  • Cheap discovery step. Combine with decode-tx only for the signatures you care about. Don’t decode 50 when you need 3.
  • err field tells you at a glance if a tx failed. Filter to successful ones before decoding.
  • Perfect for polling. Every 30 seconds, fetch fresh signatures, diff against last-seen set, decode only the new ones.

Use cases

  • Discord bot activity feed. User links wallet, bot polls this every minute and decodes new signatures for a labeled feed.
  • Wallet activity dashboard. UI polls this, decodes with Decode Tx, renders a live feed.
  • Watched-wallet monitor. Track whale wallets. Alert when they submit new transactions.
  • Failed-tx retry loop. Bot’s own signatures come back with err? Rebuild and retry.
  • Tax export foundation. Loop back through history in batches of 50, decode each, categorize, output CSV.

Recipe: watch a whale wallet for new activity

whale-watcher.ts
This endpoint returns signatures, not full transaction data. Piping every signature into Decode Tx is the standard follow-up.