Skip to main content
GET
Trader - Trades Seek By Time

Time-bounded trade history for one trader wallet.

  • Pass the trader wallet in address.
  • limit supports 1 to 100 items per request.
  • Use before_time and after_time to retrieve wallet trade activity over a chosen window.
  • Insights in the response:
  • price: the executed price of the trade at the exact moment the transaction occurred.
  • nearestPrice: the closest available market price to the transaction timestamp from Birdeye’s price index.
  • basePrice: the USD price of the base token at the time of the trade.
  • quotePrice: the USD price of the quote token at the time of the trade.
  • This endpoint consumes 10 CU per request.
  • Retrieve historical trades for a specific trader from a given timestamp.
  • Useful for trader behavior analysis, execution review, and wallet-level flow reconstruction.
  • Great for tracking whale activity, token movements, or suspicious patterns.
  • Reconstruct a wallet’s trading timeline over a specific period.
  • Review whether a trader accumulated, flipped, or exited around a market event.
  • Backfill trader-centric execution data into performance or behavior models.
  • Investigate how one wallet’s trade path aligned with token or market-level moves.
  • Set x-chain for the target network.
  • Pass the trader wallet in address.
  • Bound the query with after_time and before_time.
  • Page with offset and limit, keeping limit at 100 or below.
  • Use deterministic time windows for trader backfills so retries and deduplication stay clean.
  • Join the wallet’s trades with holder, PnL, or token-level trade views when investigating attribution.
  • Treat nearestPrice as reference context and price as the actual executed trade price.

Authorizations

X-API-KEY
string
header
required

API key for authentication

Headers

x-chain
enum<string>
default:solana

A chain name listed in supported networks.

Available options:
solana,
ethereum,
bsc,
base,
robinhood,
sui,
mantle,
hyperevm,
arbitrum,
avalanche,
optimism,
polygon,
zksync,
monad,
aptos,
fogo,
megaeth

Query Parameters

address
string
required

The address of a trader.

offset
integer
default:0

Pagination start position. offset + limit <= 10000

Required range: 0 <= x <= 10000
limit
integer
default:100

Number of items per page.

Required range: 1 <= x <= 100
tx_type
enum<string>
Available options:
swap,
add,
remove,
all
before_time
integer

Specify the time seeked before using unix timestamps in seconds

Required range: 1 <= x <= 10000000000
after_time
integer

Specify the time seeked after using unix timestamps in seconds

Required range: 1 <= x <= 10000000000
ui_amount_mode
enum<string>
default:scaled

Indicate whether to use the scaled amount for scaled ui amount tokens. Only support solana

Available options:
raw,
scaled

Response

JSON object containing transactions of a trader

success
boolean
required

Whether the request succeeded.

data
object
required