Transactions (Beta)
This endpoint returns transactions for a given address across several SVM chains.
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
Column | Description | Type |
---|---|---|
address | Wallet address | string |
block_slot | Block’s sequential index. | string |
block_time | Timestamp of block creation. | timestamp |
chain | Name of the blockchain | string |
raw_transaction | Raw transaction data from the RPC node at the time of ingestion | object |
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.
next_offset
to set the offset
parameter of the next page of results. Using your own offset
value will not have any effect.Headers
API key to access the service
Path Parameters
Wallet to get transactions for
Query Parameters
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.
Maximum number of transactions to return
x > 0
Response
Was this page helpful?