GET
/
echo
/
beta
/
transactions
/
svm
/
{address}

The Transactions Endpoint allows for quick and accurate lookup of transactions associated with an address. Data is typically available within 100 ms after a block has been propagated to nodes. We currently only support Solana.

Column Descriptions of the Transaction object

ColumnDescriptionType
addressWallet addressstring
block_slotBlock’s sequential index.string
block_timeTimestamp of block creation.timestamp
chainName of the blockchainstring
raw_transactionRaw transaction data from the RPC node at the time of ingestionobject

See getTransaction RPC Method for more details about raw_transaction.

Ordering

The data is ordered by descending block time, so that new transactions will always be delivered first.

Pagination

This endpoint is using cursor based pagination. You can use the limit parameter to define the maximum page size. Results might at times be less than the maximum page size. The next_offset value is included in the initial response and can be utilized to fetch the next page of results by passing it as the offset query parameter in the next request.

You can only use the value from next_offset to set the offset parameter of the next page of results. Using your own offset value will not have any effect.

Headers

X-Dune-Api-Key
string
required

API key to access the service

Path Parameters

address
string
required

Wallet to get transactions for

Query Parameters

offset
string | null

The offset to paginate through result sets. This is a cursor being passed from the previous response, only use what the backend has returned on previous responses.

limit
integer | null

Maximum number of transactions to return

Required range: x > 0

Response

200 - application/json
transactions
object[]
required
next_offset
string | null