iotax namespace.
iotax_getCoins
Return all Coin objects of a specific coin type owned by an address.The owner’s IOTA address
Optional type name for the coin (e.g.,
0x168da5bf1f48dafc111b0a488fa454aca95e0b5e::usdc::USDC). Defaults to 0x2::iota::IOTA if not specifiedOptional paging cursor for pagination
Maximum number of items per page (default: 50, max: 100)
List of coin objects
Cursor for the next page, if available
Whether there are more pages available
cURL
iotax_getAllCoins
Return all Coin objects of all types owned by an address.The owner’s IOTA address
Optional paging cursor
Maximum number of items per page
cURL
iotax_getBalance
Return the total coin balance for one coin type, owned by the address owner.The owner’s IOTA address
Optional type name for the coin (e.g.,
0x168da5bf1f48dafc111b0a488fa454aca95e0b5e::usdc::USDC). Defaults to 0x2::iota::IOTA if not specifiedThe coin type identifier
The number of coin objects for this type
The total balance across all coins of this type
Breakdown of locked balance by epoch
cURL
iotax_getAllBalances
Return the total coin balance for all coin types owned by an address.The owner’s IOTA address
Array of balance objects, one for each coin type ownedEach balance includes:
coinType- The coin type identifiercoinObjectCount- Number of coin objectstotalBalance- Total balance for this coin typelockedBalance- Locked balance breakdown
cURL
iotax_getCoinMetadata
Return metadata (e.g., symbol, decimals) for a coin type.Type name for the coin (e.g.,
0x168da5bf1f48dafc111b0a488fa454aca95e0b5e::usdc::USDC)The object ID of the coin metadata object
Number of decimal places the coin uses
Human-readable name of the coin
Symbol or ticker of the coin
Description of the coin
URL for the coin icon
cURL
iotax_getTotalSupply
Return the total supply for a coin type.Type name for the coin (e.g.,
0x168da5bf1f48dafc111b0a488fa454aca95e0b5e::usdc::USDC)The total supply value
cURL
iotax_getCirculatingSupply
Return the circulating supply summary for IOTA.The circulating supply of IOTA
The total supply of IOTA
The locked supply of IOTA
cURL
Coin Type Format
Coin types follow the format:- Native IOTA:
0x2::iota::IOTA - Custom token:
0x168da5bf1f48dafc111b0a488fa454aca95e0b5e::usdc::USDC
Working with Coin Balances
Coin balances are returned in the smallest unit. To convert to human-readable format:- Get the coin metadata to find the decimals
- Divide the balance by 10^decimals