Get transactions for a given SVM address
Field | Description | Type |
---|---|---|
next_offset | Pagination token for the next page of results | string/null |
transactions | Array of transaction objects | array |
transactions
array contains the following fields:
Field | Description | Type |
---|---|---|
address | Wallet address | string |
block_slot | Block’s sequential index | number |
block_time | Timestamp of block creation (in microseconds) | number |
chain | Name of the blockchain | string |
raw_transaction | Raw transaction data from the RPC node at the time of ingestion | object |
raw_transaction
.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.
next_offset
to set the offset
parameter of the next page of results. Using your own offset
value will not have any effect.API key to access the service
SVM address
Maximum number of results to return. Default is 100 when not provided. Values above 1000 are reduced to 1000.
1 <= x <= 1000
Pagination offset from previous response
Successful response
The response is of type object
.