Builder Info
Get Supported Chains per Builder
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
Websocket API
- Introduction
- PING/PONG
- Authentication
- Error Response
- Public Market Data
- Private User Data
Builder Info
Get Supported Chains per Builder
Limit: 10 requests per 1 second per IP address
GET /v1/public/chain_info
Get chains specified builder is available on.
GET
/
v1
/
public
/
chain_info
curl --request GET \
--url https://api-evm.orderly.org/v1/public/chain_info
{
"success": true,
"timestamp": 1702989203989,
"data": {
"rows": [
{
"name": "Arbitrum",
"public_rpc_url": "https://arb1.arbitrum.io/rpc",
"chain_id": "42161",
"currency_symbol": "ETH",
"currency_decimal": 8,
"explorer_base_url": "https://arbiscan.io",
"vault_address": "0x816f722424B49Cf1275cc86DA9840Fbd5a6167e9",
"broker_ids": [
"woofi_dex"
]
}
]
}
}
Query Parameters
return chains that supports this builder
Response
200 - application/json
OK
curl --request GET \
--url https://api-evm.orderly.org/v1/public/chain_info
{
"success": true,
"timestamp": 1702989203989,
"data": {
"rows": [
{
"name": "Arbitrum",
"public_rpc_url": "https://arb1.arbitrum.io/rpc",
"chain_id": "42161",
"currency_symbol": "ETH",
"currency_decimal": 8,
"explorer_base_url": "https://arbiscan.io",
"vault_address": "0x816f722424B49Cf1275cc86DA9840Fbd5a6167e9",
"broker_ids": [
"woofi_dex"
]
}
]
}
}