Get Token Transfers
GET/api/v1/accounts/:accountAddress/token-transfers
Free [3 Credits]
List of fungible token transfers related to the account.
Request
Path Parameters
accountAddress stringrequired
account address
Query Parameters
contractAddress string
contract address
blockNumberStart int64
start-number of block-range
blockNumberEnd int64
end-number of block-range
page int32
Possible values: >= 1
Results page you want to retrieve (1..N)
Example: 1
size int32
Number of records per page, min: 1, Max: 2000
Example: 20
Responses
- 200
OK
- */*
- Schema
- Example (from schema)
Schema
Array [
]
results
object[]
required
contract
object
required
contractAddress Contract Address (string)required
contractType Contract Type (string)
Possible values: [ERC20
, KIP7
, KIP17
, KIP37
, ERC721
, ERC1155
, CONSENSUS_NODE
, CUSTOM
, UNKNOWN
, UNKNOWN_
]
blockId int64required
transactionHash Transaction Hash (string)required
feePayer Fee Payer (string)
transactionIndex int32
datetime date-timerequired
from Address (From) (string)required
to Address (To) (string)
amount Token Transfer Amount (number)required
paging
object
required
totalCount int64required
currentPage int32required
last booleanrequired
totalPage int32required
property
object
property name* object
{
"results": [
{
"contract": {
"contractAddress": "string",
"contractType": "ERC20"
},
"blockId": 0,
"transactionHash": "string",
"feePayer": "string",
"transactionIndex": 0,
"datetime": "2025-01-17T12:41:59.742Z",
"from": "string",
"to": "string",
"amount": 0
}
],
"paging": {
"totalCount": 0,
"currentPage": 0,
"last": true,
"totalPage": 0
},
"property": {}
}
Loading...