Account/User Info
Get Account Information
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
Account/User Info
Get Account Information
Limit: 10 requests per 60 seconds
GET /v1/client/info
Get basic account information including current user fee rates.
GET
/
v1
/
client
/
info
curl --request GET \
--url https://api-evm.orderly.org/v1/client/info \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>'
{
"success": true,
"timestamp": 1702989203989,
"data": {
"account_id": "<string>",
"email": "test@test.com",
"account_mode": "FUTURES",
"max_leverage": 20,
"taker_fee_rate": 0,
"maker_fee_rate": 0,
"futures_taker_fee_rate": 0,
"futures_maker_fee_rate": 0,
"maintenance_cancel_orders": true,
"imr_factor": {
"PERP_BTC_USDC": 123,
"PERP_ETH_USDC": 123,
"PERP_NEAR_USDC": 123
},
"max_notional": {
"PERP_BTC_USDC": 123,
"PERP_ETH_USDC": 123,
"PERP_NEAR_USDC": 123
}
}
}
Headers
Response
200 - application/json
OK
account mode
curl --request GET \
--url https://api-evm.orderly.org/v1/client/info \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>'
{
"success": true,
"timestamp": 1702989203989,
"data": {
"account_id": "<string>",
"email": "test@test.com",
"account_mode": "FUTURES",
"max_leverage": 20,
"taker_fee_rate": 0,
"maker_fee_rate": 0,
"futures_taker_fee_rate": 0,
"futures_maker_fee_rate": 0,
"maintenance_cancel_orders": true,
"imr_factor": {
"PERP_BTC_USDC": 123,
"PERP_ETH_USDC": 123,
"PERP_NEAR_USDC": 123
},
"max_notional": {
"PERP_BTC_USDC": 123,
"PERP_ETH_USDC": 123,
"PERP_NEAR_USDC": 123
}
}
}