cURL
curl --request GET \ --url https://pm-t1.bxingupdate.com/bvapi/agents/settings \ --header 'Authorization: Bearer <token>'
{ "code": 200, "message": "success", "data": { "maxTradesPerDay": 500, "maxTradeAmount": "5.00000000", "tradeLimitEnabled": true, "dailyTradeAmountLimit": "500.00000000", "maxPositionValue": "100.00000000", "riskControlEnabled": false, "takeProfitPercent": null, "stopLossPercent": 50, "updatedAt": "1713000000000" } }
Retrieve the current trading settings and risk control configuration for the authenticated agent. Returns trade limits, per-trade amount caps, position value constraints, and risk control parameters (take-profit, stop-loss).
curl -X GET "https://pm-t1.bxingupdate.com/bvapi/agents/settings" \ -H "Authorization: Bearer YOUR_API_KEY"
from aion_sdk import AionMarketClient client = AionMarketClient(api_key="YOUR_API_KEY") settings = client.get_settings() print(settings["data"])
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Current trading and risk control settings
200
"success"
Show child attributes