curl --request GET \
--url https://api.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
}
}
}
Limit: 10 requests per 60 seconds
GET /v1/client/info
Get basic account information including current user fee rates.
curl --request GET \
--url https://api.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
}
}
}
OK
The response is of type object
.