Through this endpoint customers can obtain information about available assets in all of their wallets, regardless of the blockchain protocol or network.
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.
The starting index of the response items, i.e. where the response should start listing the returned items.
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.
The starting index of the response items, i.e. where the response should start listing the returned items.
Defines the total number of items returned in the response.
Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, etc.
Defines the total balance of the address that is confirmed. It doesn't include unconfirmed transactions.
Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while networks like "testnet", "sepolia" are test networks.
Defines the total amount of all coins received to the address, based on confirmed transactions.
Defines the total amount of all spent by this address coins, based on confirmed transactions.
Represents the unit of the confirmed balance.
Represents fungible tokens'es detailed information
Defines the amount of the fungible tokens.
Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, etc.
Defines the specific token identifier. For Bitcoin-based transactions it should be the propertyId and for Ethereum-based transactions - the contract.
Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while networks like "testnet", "sepolia" are test networks.
Defines the symbol of the fungible tokens.
Defines the specific token type.
Represents non-fungible tokens'es detailed information.
Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, etc.
Defines the specific token identifier. For Bitcoin-based transactions it should be the propertyId and for Ethereum-based transactions - the contract.
Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while networks like "testnet", "sepolia" are test networks.
Defines the symbol of the non-fungible tokens.
Represents tokens' unique identifier.
Defines the specific token type.
Defines the unique ID of the Wallet.
Represents the name of the wallet.
API Key
{
"apiVersion": "2023-04-25",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"offset": 0,
"total": 100,
"items": [
{
"coins": [
{
"blockchain": "bitcoin",
"confirmedBalance": "0.00009179",
"network": "testnet",
"totalReceived": "5.6",
"totalSpent": "2.1",
"unit": "BTC"
}
],
"fungibleTokens": [
{
"amount": "0.254",
"blockchain": "ethereum",
"identifier": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"network": "mainnet",
"symbol": "USDT",
"type": "ERC-20"
}
],
"nonFungibleTokens": [
{
"blockchain": "ethereum",
"identifier": "0x90ca8a3eb2574f937f514749ce619fdcca187d45",
"network": "goerli",
"symbol": "ENS",
"tokenId": "0x000000000000000000000000000000000000000000000000000000000000195b",
"type": "ERC-721"
}
],
"walletId": "60c9d9921c38030006675ff6",
"walletName": "exampleName"
}
]
}
}