Through this endpoint customers can obtain token data by providing an attribute - address. The information that can be returned can include the contract address, the token symbol, type and balance.
String identifier of the address
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context
is specified by the user.
Specifies the version of the API that incorporates this endpoint.
Defines the ID of the request. The requestId
is generated by Crypto APIs and it's unique for every request.
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context
is specified by the user.
Defines how many items should be returned in the response per page basis.
Defines the id of the previous listed record id from which the current list should start from.
Defines whether or not there are more elements available after this set.
Defines the id of the next page which the next list should start from.
Defines what the sorting order is either ascending or descending.
String representation of the token name
Defines the specific token type.
String representation of the token symbol
String representation of contract address of the token that was transfered
Token balance
API Key
{
"apiVersion": "2024-12-12",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"startingAfter": "5ca21f92cf5431000105d1a7",
"hasMore": true,
"nextStartingAfter": "5ca21f92cf5431000105d1a7",
"sortingOrder": "ascending",
"items": [
{
"name": "Tether",
"standard": "ERC-20",
"symbol": "USDT",
"contractAddress": "0xece01807f7d9b93529174533e997e5de168b0b39",
"fungibleValues": {
"amount": "162727.720910848"
}
}
]
}
}