curl --request GET \
--url https://api.orderly.org/v1/public/token
{
"success": true,
"timestamp": 1702989203989,
"data": {
"rows": [
{
"token": "USDC",
"decimals": 6,
"minimum_withdraw_amount": 0.000001,
"token_hash": "0xd6aca1be9729c13d677335161321649cccae6a591554772516700f986f942eaa",
"chain_details": [
{
"chain_id": 43113,
"contract_address": "0x5d64c9cfb0197775b4b3ad9be4d3c7976e0d8dc3",
"cross_chain_withdrawal_fee": 0,
"decimals": 6,
"withdraw_fee": 2,
"display_name": "USDC"
}
]
}
]
}
}
Limit: 10 requests per 1 second per IP address
GET /v1/public/token
Retrieves the available tokens to be used as collateral within Orderly.
curl --request GET \
--url https://api.orderly.org/v1/public/token
{
"success": true,
"timestamp": 1702989203989,
"data": {
"rows": [
{
"token": "USDC",
"decimals": 6,
"minimum_withdraw_amount": 0.000001,
"token_hash": "0xd6aca1be9729c13d677335161321649cccae6a591554772516700f986f942eaa",
"chain_details": [
{
"chain_id": 43113,
"contract_address": "0x5d64c9cfb0197775b4b3ad9be4d3c7976e0d8dc3",
"cross_chain_withdrawal_fee": 0,
"decimals": 6,
"withdraw_fee": 2,
"display_name": "USDC"
}
]
}
]
}
}
Filter results by chain_id
OK
The response is of type object
.