Wallet History

Returns a tracked wallet's complete LIFETIME trading history — every recorded transaction with no time limit. Includes aggregated lifetime stats, a per-token overview, a win-rate distribution and the full trade list via cursor pagination. Closed days are cached immutably and only the current day is read live, so responses stay fast across the full history.

Get a wallet's lifetime trading history

get

Aggregates all recorded transactions for the wallet across its entire history (not limited to a period). Only wallets that appear in a leaderboard are tracked — unknown addresses return 404.

Parameters

  • blockchain (required) — one of: solana, bnb, base, eth

  • address (required) — wallet address (Solana base58 or 0x… for EVM chains)

  • api_key (optional if Bearer header is used)

Authorizations
AuthorizationstringRequired

Authorization: Bearer YOUR_KEY

Query parameters
blockchainstring · enumRequiredExample: solanaPossible values:
addressstringRequiredExample: G6fUXjMKPJzCY1rveAE6Qm7wy5U3vZgKDJmN1VPAdiZC
cursorstringOptional

Opaque pagination cursor from pagination.next_cursor of the previous response. Omit for the first page. Keep calling with the returned cursor until next_cursor is null to export every trade.

limitinteger · min: 1 · max: 1000Optional

Trades per page (1–1000).

Default: 500Example: 500
api_keystringOptionalExample: YOUR_KEY
Responses
200

Wallet found — returns lifetime history.

application/json
successbooleanOptional
metaobjectOptional
get
/v1/wallets/history

Last updated