Market Info
Get Supported Collateral Info
Partner Support
User Flows
General API
- Builder Info
- System Info
- USDC Faucet
User API
- Registration
- Key Management
- Account/User Info
- Account Notifications
- Account Config
- Delegate Signer
Trading API
- Order Management
- Liquidations
- Assets/Withdraw/Settle PnL
- Positions
- Funding
Rewards API
- Trading Rewards
- Market Making Rewards
Staking & Valor API
- Staking
- Valor
Builder API
- User Data
- Trading Campaigns
- Fee Setting
- Referral Program
Market Data API
- TradingView
- Funding Rates
- Market Info
- GETGet Supported Collateral Info
- GETGet Order Rules per Symbol
- GETGet Available Symbols
- GETGet Market Trades
- GETGet Price Info for All Symbols
- GETGet Open Interests for All Symbols
- GETGet Market Info for All Symbols
- GETGet Market Info for One Symbol
- GETGet Index Price Source
- GETGet Historical Price List for All Symbols
- GETOrderbook Snapshot
- GETGet Kline
- GET
Websocket API
- Introduction
- PING/PONG
- Authentication
- Error Response
- Public Market Data
- Private User Data
Market Info
Get Supported Collateral Info
Limit: 10 requests per 1 second per IP address
GET /v1/public/token
Retrieves the available tokens to be used as collateral within Orderly.
GET
/
v1
/
public
/
token
Copy
curl --request GET \
--url https://api-evm.orderly.org/v1/public/token
Copy
{
"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"
}
]
}
]
}
}
Query Parameters
Filter results by chain_id
Response
200 - application/json
USDC.e
for Mantle
chain
precision of the token
name of token
Copy
curl --request GET \
--url https://api-evm.orderly.org/v1/public/token
Copy
{
"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"
}
]
}
]
}
}