Through this endpoint customers can pull a list of Deposit/Receiving Addresses they have already generated.
Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, etc.
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.
Represents the unique ID of the specific Wallet.
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.
Specifies the specific address's unique string value.
Defines the total balance of the address that is confirmed. It doesn't include unconfirmed transactions.
Represents the unit of the confirmed balance.
Defines the specific UNIX time when the deposit address was created.
Represents fungible tokens'es detailed information
Defines the amount of the fungible tokens.
Defines the specific token identifier. For Bitcoin-based transactions it should be the propertyId and for Ethereum-based transactions - the contract.
Defines the token's name as a string.
Defines the symbol of the fungible tokens.
Defines the decimals of the token, i.e. the number of digits that come after the decimal coma of the token.
Defines the specific token type.
Represents the index of the address in the wallet.
Represents a custom tag that customers can set up for their Wallets and addresses. E.g. custom label named "Special addresses".
Represents non-fungible tokens'es detailed information.
Defines the specific token identifier. For Bitcoin-based transactions it should be the propertyId and for Ethereum-based transactions - the contract.
Defines the token's name as a string.
Defines the symbol of the non-fungible tokens.
Represents tokens' unique identifier.
Defines the specific token type.
API Key
{
"apiVersion": "2023-04-25",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"offset": 0,
"total": 100,
"items": [
{
"address": "0xe2b5f5e885a268e4b6faae53f99a663f3bb3e036",
"confirmedBalance": {
"amount": "0.0101",
"unit": "ETH"
},
"createdTimestamp": 346658753,
"fungibleTokens": [
{
"amount": "0.254",
"identifier": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"name": "Tether USD",
"symbol": "USDT",
"tokenDecimals": 6,
"type": "ERC-20"
}
],
"index": "1",
"label": "yourStringHere",
"nonFungibleTokens": [
{
"identifier": "0x90ca8a3eb2574f937f514749ce619fdcca187d45",
"name": "Tether",
"symbol": "ENS",
"tokenId": "0x000000000000000000000000000000000000000000000000000000000000195b",
"type": "ERC-721"
}
]
}
]
}
}