Skip to main content
The Transactions Endpoint allows for quick and accurate lookup of transactions associated with an address. We currently only support Solana.

Response Structure

The API returns a JSON object with the following top-level fields:
FieldDescriptionType
next_offsetPagination token for the next page of resultsstring/null
transactionsArray of transaction objectsarray

Transaction Object Fields

Each item in the transactions array contains the following fields:
FieldDescriptionType
addressWallet addressstring
block_slotBlock’s sequential indexnumber
block_timeTimestamp of block creation (in microseconds)number
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 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.

Compute Unit Cost

The SVM Transactions endpoint has a fixed CU cost of 1 per request. See the Compute Units page for detailed information.