Get onchain transactions for a token
Returns a paginated list of onchain transactions for the token contract, optionally filtered by date range.
GET
TypeScript
Path Parameters
The token link id
Query Parameters
Start date of the time range in ISO 8601 format
End date of the time range in ISO 8601 format
Page cursor to get the next page
Number of items per page (max 100), requesting more than 100 will return 100 items
Required range:
1 <= x <= 100Sorting field (enum).
Available options:
blockTimestamp, blockNumber, transactionHash ASC / DESC ordering (default DESC)
Available options:
ASC, DESC Response
Onchain transactions fetched successfully
Array of onchain transactions
Example:
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"baseAssetId": "ETH_TEST3",
"blockHash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"blockNumber": 12345678,
"blockTimestamp": "2025-01-16T15:45:00Z",
"chainId": 1,
"contractAddress": "0x1234567890123456789012345678901234567890",
"cumulativeGasUsed": "21000",
"effectiveGasPrice": "20000000000",
"fromAddress": "0xabcdef1234567890abcdef1234567890abcdef12",
"gasUsed": "21000",
"status": "1",
"toAddress": "0x1234567890123456789012345678901234567890",
"transactionHash": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
"transactionIndex": "0",
"type": "2"
}
]Cursor for next page
Example:
"MjAyMy0xMi0xMyAyMDozNjowOC4zMDI=:MTEwMA=="
Cursor for previous page
Example:
"dGhpcyBpcyBhIHByZXZpb3VzIGN1cnNvcg=="
Total count of items
Example:
150
Previous
Get active RBAC roles for a tokenReturns a list of currently active roles for the token contract.
Next
TypeScript