curl --request GET \
--url https://api.woox.io/v3/public/tokenNetwork
{
"success": true,
"timestamp": 123,
"data": {
"rows": [
{
"protocol": "<string>",
"network": "<string>",
"token": "<string>",
"name": "<string>",
"minimumWithdrawal": 123,
"withdrawalFee": 123,
"allowDeposit": 123,
"allowWithdraw": 123
}
]
}
}
Get the available networks for each token as well as the deposit/withdrawal information.
curl --request GET \
--url https://api.woox.io/v3/public/tokenNetwork
{
"success": true,
"timestamp": 123,
"data": {
"rows": [
{
"protocol": "<string>",
"network": "<string>",
"token": "<string>",
"name": "<string>",
"minimumWithdrawal": 123,
"withdrawalFee": 123,
"allowDeposit": 123,
"allowWithdraw": 123
}
]
}
}
The response is of type object
.