Skip to main content
GET
Trades by signer address

Authorizations

apiKey
string
query
required

Path Parameters

signer
string
required

Query Parameters

limit
integer
default:50

Maximum number of trades to return

Required range: 1 <= x <= 200
cursor
string

Cursor for efficient pagination. Use the nextCursor value from the previous response to fetch the next page.

from
integer<int64>

Inclusive lower bound of the time window, in Unix MILLISECONDS. (Note - ms, unlike OHLC which uses seconds.)

to
integer<int64>

Inclusive upper bound of the time window, in Unix MILLISECONDS.

sort
enum<string>
default:desc

Sort order by timestamp. Use 'asc' for oldest first, 'desc' for newest first (default)

Available options:
asc,
desc

Response

Success. Signer-scoped data[] items are LEAN — base Trade fields plus analysisUpdatedAt and createdAt, but NOT the mint-only quote/venue/liquidity block. An invalid address returns HTTP 200 with { "error": true, "message": "..." }.

success
boolean
data
object[]
count
integer

Number of trades returned in this response

limit
integer

Maximum number of trades requested

nextCursor
string | null

Cursor to use for fetching the next page of results. Pass this value to the cursor parameter in your next request. Returns null when no more pages are available.

hasMore
boolean

Indicates if there are more records available

mint
string

Present when filtering by mint

signer
string

Present when filtering by signer

sort
enum<string>

Sort order used for the query (asc = oldest first, desc = newest first)

Available options:
asc,
desc