{"id":28693443,"url":"https://github.com/ccxt/bitget-python","last_synced_at":"2025-10-24T09:46:18.113Z","repository":{"id":283541236,"uuid":"950782565","full_name":"ccxt/bitget-python","owner":"ccxt","description":null,"archived":false,"fork":false,"pushed_at":"2025-10-22T09:03:00.000Z","size":1769,"stargazers_count":14,"open_issues_count":0,"forks_count":2,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-22T09:59:42.760Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ccxt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-03-18T17:18:28.000Z","updated_at":"2025-10-22T09:03:04.000Z","dependencies_parsed_at":"2025-03-20T20:11:28.241Z","dependency_job_id":"5260e5d8-e8ff-4d58-9d0f-d0e9d7ee2fd9","html_url":"https://github.com/ccxt/bitget-python","commit_stats":null,"previous_names":["ccxt/bitget-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ccxt/bitget-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccxt%2Fbitget-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccxt%2Fbitget-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccxt%2Fbitget-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccxt%2Fbitget-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ccxt","download_url":"https://codeload.github.com/ccxt/bitget-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccxt%2Fbitget-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280776487,"owners_count":26388950,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-24T02:00:06.418Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-14T08:30:30.477Z","updated_at":"2025-10-24T09:46:18.093Z","avatar_url":"https://github.com/ccxt.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bitget-python\nPython SDK (sync and async) for Bitget cryptocurrency exchange with Rest and WS capabilities.\n\n- You can check the SDK docs here: [SDK](https://docs.ccxt.com/#/exchanges/bitget)\n- You can check Bitget's docs here: [Docs](https://www.google.com/search?q=google+bitget+cryptocurrency+exchange+api+docs)\n- Github repo: https://github.com/ccxt/bitget-python\n- Pypi package: https://pypi.org/project/bitget\n\n\n## Installation\n\n```\npip install bitget\n```\n\n## Usage\n\n### Sync\n\n```Python\nfrom bitget import BitgetSync\n\ndef main():\n    instance = BitgetSync({})\n    ob =  instance.fetch_order_book(\"BTC/USDC\")\n    print(ob)\n    #\n    # balance = instance.fetch_balance()\n    # order = instance.create_order(\"BTC/USDC\", \"limit\", \"buy\", 1, 100000)\n\nmain()\n```\n\n### Async\n\n```Python\nimport sys\nimport asyncio\nfrom bitget import BitgetAsync\n\n### on Windows, uncomment below:\n# if sys.platform == 'win32':\n# \tasyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())\n\nasync def main():\n    instance = BitgetAsync({})\n    ob =  await instance.fetch_order_book(\"BTC/USDC\")\n    print(ob)\n    #\n    # balance = await instance.fetch_balance()\n    # order = await instance.create_order(\"BTC/USDC\", \"limit\", \"buy\", 1, 100000)\n\n    # once you are done with the exchange\n    await instance.close()\n\nasyncio.run(main())\n```\n\n\n\n### Websockets\n\n```Python\nimport sys\nfrom bitget import BitgetWs\n\n### on Windows, uncomment below:\n# if sys.platform == 'win32':\n# \tasyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())\n\nasync def main():\n    instance = BitgetWs({})\n    while True:\n        ob = await instance.watch_order_book(\"BTC/USDC\")\n        print(ob)\n        # orders = await instance.watch_orders(\"BTC/USDC\")\n\n    # once you are done with the exchange\n    await instance.close()\n\nasyncio.run(main())\n```\n\n\n\n\n\n#### Raw call\n\nYou can also construct custom requests to available \"implicit\" endpoints\n\n```Python\n        request = {\n            'type': 'candleSnapshot',\n            'req': {\n                'coin': coin,\n                'interval': tf,\n                'startTime': since,\n                'endTime': until,\n            },\n        }\n        response = await instance.public_post_info(request)\n```\n\n\n## Available methods\n\n### REST Unified\n\n- `create_convert_trade(self, id: str, fromCode: str, toCode: str, amount: Num = None, params={})`\n- `create_market_buy_order_with_cost(self, symbol: str, cost: float, params={})`\n- `create_order_request(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`\n- `create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`\n- `create_orders(self, orders: List[OrderRequest], params={})`\n- `create_uta_order_request(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`\n- `create_uta_orders(self, orders: List[OrderRequest], params={})`\n- `fetch_balance(self, params={})`\n- `fetch_borrow_interest(self, code: Str = None, symbol: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_canceled_and_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_canceled_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_convert_currencies(self, params={})`\n- `fetch_convert_quote(self, fromCode: str, toCode: str, amount: Num = None, params={})`\n- `fetch_convert_trade_history(self, code: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_cross_borrow_rate(self, code: str, params={})`\n- `fetch_currencies(self, params={})`\n- `fetch_default_markets(self, params)`\n- `fetch_deposit_address(self, code: str, params={})`\n- `fetch_deposit_withdraw_fees(self, codes: Strings = None, params={})`\n- `fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_funding_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_funding_interval(self, symbol: str, params={})`\n- `fetch_funding_rate_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_funding_rate(self, symbol: str, params={})`\n- `fetch_funding_rates(self, symbols: Strings = None, params={})`\n- `fetch_isolated_borrow_rate(self, symbol: str, params={})`\n- `fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_leverage(self, symbol: str, params={})`\n- `fetch_long_short_ratio_history(self, symbol: Str = None, timeframe: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_margin_mode(self, symbol: str, params={})`\n- `fetch_mark_price(self, symbol: str, params={})`\n- `fetch_market_leverage_tiers(self, symbol: str, params={})`\n- `fetch_markets(self, params={})`\n- `fetch_my_liquidations(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={})`\n- `fetch_open_interest(self, symbol: str, params={})`\n- `fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_order_book(self, symbol: str, limit: Int = None, params={})`\n- `fetch_order(self, id: str, symbol: Str = None, params={})`\n- `fetch_position(self, symbol: str, params={})`\n- `fetch_positions_history(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_positions(self, symbols: Strings = None, params={})`\n- `fetch_ticker(self, symbol: str, params={})`\n- `fetch_tickers(self, symbols: Strings = None, params={})`\n- `fetch_time(self, params={})`\n- `fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={})`\n- `fetch_trading_fee(self, symbol: str, params={})`\n- `fetch_trading_fees(self, params={})`\n- `fetch_transfers(self, code: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_uta_canceled_and_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`\n- `fetch_uta_markets(self, params)`\n- `fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={})`\n- `add_margin(self, symbol: str, amount: float, params={})`\n- `borrow_cross_margin(self, code: str, amount: float, params={})`\n- `borrow_isolated_margin(self, symbol: str, code: str, amount: float, params={})`\n- `cancel_all_orders(self, symbol: Str = None, params={})`\n- `cancel_order(self, id: str, symbol: Str = None, params={})`\n- `cancel_orders(self, ids: List[str], symbol: Str = None, params={})`\n- `cancel_uta_orders(self, ids, symbol: Str = None, params={})`\n- `close_all_positions(self, params={})`\n- `close_position(self, symbol: str, side: OrderSide = None, params={})`\n- `describe(self)`\n- `edit_order(self, id: str, symbol: str, type: OrderType, side: OrderSide, amount: Num = None, price: Num = None, params={})`\n- `enable_demo_trading(self, enabled: bool)`\n- `modify_margin_helper(self, symbol: str, amount, type, params={})`\n- `nonce(self)`\n- `reduce_margin(self, symbol: str, amount: float, params={})`\n- `repay_cross_margin(self, code: str, amount, params={})`\n- `repay_isolated_margin(self, symbol: str, code: str, amount, params={})`\n- `set_leverage(self, leverage: int, symbol: Str = None, params={})`\n- `set_margin_mode(self, marginMode: str, symbol: Str = None, params={})`\n- `set_position_mode(self, hedged: bool, symbol: Str = None, params={})`\n- `set_sandbox_mode(self, enabled: bool)`\n- `transfer(self, code: str, amount: float, fromAccount: str, toAccount: str, params={})`\n- `withdraw(self, code: str, amount: float, address: str, tag: Str = None, params={})`\n\n### REST Raw\n\n- `public_common_get_v2_public_annoucements(request)`\n- `public_common_get_v2_public_time(request)`\n- `public_spot_get_spot_v1_notice_queryallnotices(request)`\n- `public_spot_get_spot_v1_public_time(request)`\n- `public_spot_get_spot_v1_public_currencies(request)`\n- `public_spot_get_spot_v1_public_products(request)`\n- `public_spot_get_spot_v1_public_product(request)`\n- `public_spot_get_spot_v1_market_ticker(request)`\n- `public_spot_get_spot_v1_market_tickers(request)`\n- `public_spot_get_spot_v1_market_fills(request)`\n- `public_spot_get_spot_v1_market_fills_history(request)`\n- `public_spot_get_spot_v1_market_candles(request)`\n- `public_spot_get_spot_v1_market_depth(request)`\n- `public_spot_get_spot_v1_market_spot_vip_level(request)`\n- `public_spot_get_spot_v1_market_merge_depth(request)`\n- `public_spot_get_spot_v1_market_history_candles(request)`\n- `public_spot_get_spot_v1_public_loan_coininfos(request)`\n- `public_spot_get_spot_v1_public_loan_hour_interest(request)`\n- `public_spot_get_v2_spot_public_coins(request)`\n- `public_spot_get_v2_spot_public_symbols(request)`\n- `public_spot_get_v2_spot_market_vip_fee_rate(request)`\n- `public_spot_get_v2_spot_market_tickers(request)`\n- `public_spot_get_v2_spot_market_merge_depth(request)`\n- `public_spot_get_v2_spot_market_orderbook(request)`\n- `public_spot_get_v2_spot_market_candles(request)`\n- `public_spot_get_v2_spot_market_history_candles(request)`\n- `public_spot_get_v2_spot_market_fills(request)`\n- `public_spot_get_v2_spot_market_fills_history(request)`\n- `public_mix_get_mix_v1_market_contracts(request)`\n- `public_mix_get_mix_v1_market_depth(request)`\n- `public_mix_get_mix_v1_market_ticker(request)`\n- `public_mix_get_mix_v1_market_tickers(request)`\n- `public_mix_get_mix_v1_market_contract_vip_level(request)`\n- `public_mix_get_mix_v1_market_fills(request)`\n- `public_mix_get_mix_v1_market_fills_history(request)`\n- `public_mix_get_mix_v1_market_candles(request)`\n- `public_mix_get_mix_v1_market_index(request)`\n- `public_mix_get_mix_v1_market_funding_time(request)`\n- `public_mix_get_mix_v1_market_history_fundrate(request)`\n- `public_mix_get_mix_v1_market_current_fundrate(request)`\n- `public_mix_get_mix_v1_market_open_interest(request)`\n- `public_mix_get_mix_v1_market_mark_price(request)`\n- `public_mix_get_mix_v1_market_symbol_leverage(request)`\n- `public_mix_get_mix_v1_market_querypositionlever(request)`\n- `public_mix_get_mix_v1_market_open_limit(request)`\n- `public_mix_get_mix_v1_market_history_candles(request)`\n- `public_mix_get_mix_v1_market_history_index_candles(request)`\n- `public_mix_get_mix_v1_market_history_mark_candles(request)`\n- `public_mix_get_mix_v1_market_merge_depth(request)`\n- `public_mix_get_v2_mix_market_vip_fee_rate(request)`\n- `public_mix_get_v2_mix_market_merge_depth(request)`\n- `public_mix_get_v2_mix_market_ticker(request)`\n- `public_mix_get_v2_mix_market_tickers(request)`\n- `public_mix_get_v2_mix_market_fills(request)`\n- `public_mix_get_v2_mix_market_fills_history(request)`\n- `public_mix_get_v2_mix_market_candles(request)`\n- `public_mix_get_v2_mix_market_history_candles(request)`\n- `public_mix_get_v2_mix_market_history_index_candles(request)`\n- `public_mix_get_v2_mix_market_history_mark_candles(request)`\n- `public_mix_get_v2_mix_market_open_interest(request)`\n- `public_mix_get_v2_mix_market_funding_time(request)`\n- `public_mix_get_v2_mix_market_symbol_price(request)`\n- `public_mix_get_v2_mix_market_history_fund_rate(request)`\n- `public_mix_get_v2_mix_market_current_fund_rate(request)`\n- `public_mix_get_v2_mix_market_contracts(request)`\n- `public_mix_get_v2_mix_market_query_position_lever(request)`\n- `public_mix_get_v2_mix_market_account_long_short(request)`\n- `public_margin_get_margin_v1_cross_public_interestrateandlimit(request)`\n- `public_margin_get_margin_v1_isolated_public_interestrateandlimit(request)`\n- `public_margin_get_margin_v1_cross_public_tierdata(request)`\n- `public_margin_get_margin_v1_isolated_public_tierdata(request)`\n- `public_margin_get_margin_v1_public_currencies(request)`\n- `public_margin_get_v2_margin_currencies(request)`\n- `public_margin_get_v2_margin_market_long_short_ratio(request)`\n- `public_earn_get_v2_earn_loan_public_coininfos(request)`\n- `public_earn_get_v2_earn_loan_public_hour_interest(request)`\n- `public_uta_get_v3_market_instruments(request)`\n- `public_uta_get_v3_market_tickers(request)`\n- `public_uta_get_v3_market_orderbook(request)`\n- `public_uta_get_v3_market_fills(request)`\n- `public_uta_get_v3_market_open_interest(request)`\n- `public_uta_get_v3_market_candles(request)`\n- `public_uta_get_v3_market_history_candles(request)`\n- `public_uta_get_v3_market_current_fund_rate(request)`\n- `public_uta_get_v3_market_history_fund_rate(request)`\n- `public_uta_get_v3_market_risk_reserve(request)`\n- `public_uta_get_v3_market_discount_rate(request)`\n- `public_uta_get_v3_market_margin_loans(request)`\n- `public_uta_get_v3_market_position_tier(request)`\n- `public_uta_get_v3_market_oi_limit(request)`\n- `private_spot_get_spot_v1_wallet_deposit_address(request)`\n- `private_spot_get_spot_v1_wallet_withdrawal_list(request)`\n- `private_spot_get_spot_v1_wallet_deposit_list(request)`\n- `private_spot_get_spot_v1_account_getinfo(request)`\n- `private_spot_get_spot_v1_account_assets(request)`\n- `private_spot_get_spot_v1_account_assets_lite(request)`\n- `private_spot_get_spot_v1_account_transferrecords(request)`\n- `private_spot_get_spot_v1_convert_currencies(request)`\n- `private_spot_get_spot_v1_convert_convert_record(request)`\n- `private_spot_get_spot_v1_loan_ongoing_orders(request)`\n- `private_spot_get_spot_v1_loan_repay_history(request)`\n- `private_spot_get_spot_v1_loan_revise_history(request)`\n- `private_spot_get_spot_v1_loan_borrow_history(request)`\n- `private_spot_get_spot_v1_loan_debts(request)`\n- `private_spot_get_v2_spot_trade_orderinfo(request)`\n- `private_spot_get_v2_spot_trade_unfilled_orders(request)`\n- `private_spot_get_v2_spot_trade_history_orders(request)`\n- `private_spot_get_v2_spot_trade_fills(request)`\n- `private_spot_get_v2_spot_trade_current_plan_order(request)`\n- `private_spot_get_v2_spot_trade_history_plan_order(request)`\n- `private_spot_get_v2_spot_account_info(request)`\n- `private_spot_get_v2_spot_account_assets(request)`\n- `private_spot_get_v2_spot_account_subaccount_assets(request)`\n- `private_spot_get_v2_spot_account_bills(request)`\n- `private_spot_get_v2_spot_account_transferrecords(request)`\n- `private_spot_get_v2_account_funding_assets(request)`\n- `private_spot_get_v2_account_bot_assets(request)`\n- `private_spot_get_v2_account_all_account_balance(request)`\n- `private_spot_get_v2_spot_wallet_deposit_address(request)`\n- `private_spot_get_v2_spot_wallet_deposit_records(request)`\n- `private_spot_get_v2_spot_wallet_withdrawal_records(request)`\n- `private_spot_post_spot_v1_wallet_transfer(request)`\n- `private_spot_post_spot_v1_wallet_transfer_v2(request)`\n- `private_spot_post_spot_v1_wallet_subtransfer(request)`\n- `private_spot_post_spot_v1_wallet_withdrawal(request)`\n- `private_spot_post_spot_v1_wallet_withdrawal_v2(request)`\n- `private_spot_post_spot_v1_wallet_withdrawal_inner(request)`\n- `private_spot_post_spot_v1_wallet_withdrawal_inner_v2(request)`\n- `private_spot_post_spot_v1_account_sub_account_spot_assets(request)`\n- `private_spot_post_spot_v1_account_bills(request)`\n- `private_spot_post_spot_v1_trade_orders(request)`\n- `private_spot_post_spot_v1_trade_batch_orders(request)`\n- `private_spot_post_spot_v1_trade_cancel_order(request)`\n- `private_spot_post_spot_v1_trade_cancel_order_v2(request)`\n- `private_spot_post_spot_v1_trade_cancel_symbol_order(request)`\n- `private_spot_post_spot_v1_trade_cancel_batch_orders(request)`\n- `private_spot_post_spot_v1_trade_cancel_batch_orders_v2(request)`\n- `private_spot_post_spot_v1_trade_orderinfo(request)`\n- `private_spot_post_spot_v1_trade_open_orders(request)`\n- `private_spot_post_spot_v1_trade_history(request)`\n- `private_spot_post_spot_v1_trade_fills(request)`\n- `private_spot_post_spot_v1_plan_placeplan(request)`\n- `private_spot_post_spot_v1_plan_modifyplan(request)`\n- `private_spot_post_spot_v1_plan_cancelplan(request)`\n- `private_spot_post_spot_v1_plan_currentplan(request)`\n- `private_spot_post_spot_v1_plan_historyplan(request)`\n- `private_spot_post_spot_v1_plan_batchcancelplan(request)`\n- `private_spot_post_spot_v1_convert_quoted_price(request)`\n- `private_spot_post_spot_v1_convert_trade(request)`\n- `private_spot_post_spot_v1_loan_borrow(request)`\n- `private_spot_post_spot_v1_loan_repay(request)`\n- `private_spot_post_spot_v1_loan_revise_pledge(request)`\n- `private_spot_post_spot_v1_trace_order_ordercurrentlist(request)`\n- `private_spot_post_spot_v1_trace_order_orderhistorylist(request)`\n- `private_spot_post_spot_v1_trace_order_closetrackingorder(request)`\n- `private_spot_post_spot_v1_trace_order_updatetpsl(request)`\n- `private_spot_post_spot_v1_trace_order_followerendorder(request)`\n- `private_spot_post_spot_v1_trace_order_spotinfolist(request)`\n- `private_spot_post_spot_v1_trace_config_gettradersettings(request)`\n- `private_spot_post_spot_v1_trace_config_getfollowersettings(request)`\n- `private_spot_post_spot_v1_trace_user_mytraders(request)`\n- `private_spot_post_spot_v1_trace_config_setfollowerconfig(request)`\n- `private_spot_post_spot_v1_trace_user_myfollowers(request)`\n- `private_spot_post_spot_v1_trace_config_setproductcode(request)`\n- `private_spot_post_spot_v1_trace_user_removetrader(request)`\n- `private_spot_post_spot_v1_trace_getremovablefollower(request)`\n- `private_spot_post_spot_v1_trace_user_removefollower(request)`\n- `private_spot_post_spot_v1_trace_profit_totalprofitinfo(request)`\n- `private_spot_post_spot_v1_trace_profit_totalprofitlist(request)`\n- `private_spot_post_spot_v1_trace_profit_profithislist(request)`\n- `private_spot_post_spot_v1_trace_profit_profithisdetaillist(request)`\n- `private_spot_post_spot_v1_trace_profit_waitprofitdetaillist(request)`\n- `private_spot_post_spot_v1_trace_user_gettraderinfo(request)`\n- `private_spot_post_v2_spot_trade_place_order(request)`\n- `private_spot_post_v2_spot_trade_cancel_order(request)`\n- `private_spot_post_v2_spot_trade_batch_orders(request)`\n- `private_spot_post_v2_spot_trade_batch_cancel_order(request)`\n- `private_spot_post_v2_spot_trade_cancel_symbol_order(request)`\n- `private_spot_post_v2_spot_trade_place_plan_order(request)`\n- `private_spot_post_v2_spot_trade_modify_plan_order(request)`\n- `private_spot_post_v2_spot_trade_cancel_plan_order(request)`\n- `private_spot_post_v2_spot_trade_batch_cancel_plan_order(request)`\n- `private_spot_post_v2_spot_wallet_transfer(request)`\n- `private_spot_post_v2_spot_wallet_subaccount_transfer(request)`\n- `private_spot_post_v2_spot_wallet_withdrawal(request)`\n- `private_spot_post_v2_spot_wallet_cancel_withdrawal(request)`\n- `private_spot_post_v2_spot_wallet_modify_deposit_account(request)`\n- `private_mix_get_mix_v1_account_account(request)`\n- `private_mix_get_mix_v1_account_accounts(request)`\n- `private_mix_get_mix_v1_position_singleposition(request)`\n- `private_mix_get_mix_v1_position_singleposition_v2(request)`\n- `private_mix_get_mix_v1_position_allposition(request)`\n- `private_mix_get_mix_v1_position_allposition_v2(request)`\n- `private_mix_get_mix_v1_position_history_position(request)`\n- `private_mix_get_mix_v1_account_accountbill(request)`\n- `private_mix_get_mix_v1_account_accountbusinessbill(request)`\n- `private_mix_get_mix_v1_order_current(request)`\n- `private_mix_get_mix_v1_order_margincoincurrent(request)`\n- `private_mix_get_mix_v1_order_history(request)`\n- `private_mix_get_mix_v1_order_historyproducttype(request)`\n- `private_mix_get_mix_v1_order_detail(request)`\n- `private_mix_get_mix_v1_order_fills(request)`\n- `private_mix_get_mix_v1_order_allfills(request)`\n- `private_mix_get_mix_v1_plan_currentplan(request)`\n- `private_mix_get_mix_v1_plan_historyplan(request)`\n- `private_mix_get_mix_v1_trace_currenttrack(request)`\n- `private_mix_get_mix_v1_trace_followerorder(request)`\n- `private_mix_get_mix_v1_trace_followerhistoryorders(request)`\n- `private_mix_get_mix_v1_trace_historytrack(request)`\n- `private_mix_get_mix_v1_trace_summary(request)`\n- `private_mix_get_mix_v1_trace_profitsettletokenidgroup(request)`\n- `private_mix_get_mix_v1_trace_profitdategrouplist(request)`\n- `private_mix_get_mix_v1_trade_profitdatelist(request)`\n- `private_mix_get_mix_v1_trace_waitprofitdatelist(request)`\n- `private_mix_get_mix_v1_trace_tradersymbols(request)`\n- `private_mix_get_mix_v1_trace_traderlist(request)`\n- `private_mix_get_mix_v1_trace_traderdetail(request)`\n- `private_mix_get_mix_v1_trace_querytraceconfig(request)`\n- `private_mix_get_v2_mix_account_account(request)`\n- `private_mix_get_v2_mix_account_accounts(request)`\n- `private_mix_get_v2_mix_account_sub_account_assets(request)`\n- `private_mix_get_v2_mix_account_open_count(request)`\n- `private_mix_get_v2_mix_account_bill(request)`\n- `private_mix_get_v2_mix_market_query_position_lever(request)`\n- `private_mix_get_v2_mix_position_single_position(request)`\n- `private_mix_get_v2_mix_position_all_position(request)`\n- `private_mix_get_v2_mix_position_history_position(request)`\n- `private_mix_get_v2_mix_order_detail(request)`\n- `private_mix_get_v2_mix_order_fills(request)`\n- `private_mix_get_v2_mix_order_fill_history(request)`\n- `private_mix_get_v2_mix_order_orders_pending(request)`\n- `private_mix_get_v2_mix_order_orders_history(request)`\n- `private_mix_get_v2_mix_order_orders_plan_pending(request)`\n- `private_mix_get_v2_mix_order_orders_plan_history(request)`\n- `private_mix_get_v2_mix_market_position_long_short(request)`\n- `private_mix_post_mix_v1_account_sub_account_contract_assets(request)`\n- `private_mix_post_mix_v1_account_open_count(request)`\n- `private_mix_post_mix_v1_account_setleverage(request)`\n- `private_mix_post_mix_v1_account_setmargin(request)`\n- `private_mix_post_mix_v1_account_setmarginmode(request)`\n- `private_mix_post_mix_v1_account_setpositionmode(request)`\n- `private_mix_post_mix_v1_order_placeorder(request)`\n- `private_mix_post_mix_v1_order_batch_orders(request)`\n- `private_mix_post_mix_v1_order_cancel_order(request)`\n- `private_mix_post_mix_v1_order_cancel_batch_orders(request)`\n- `private_mix_post_mix_v1_order_modifyorder(request)`\n- `private_mix_post_mix_v1_order_cancel_symbol_orders(request)`\n- `private_mix_post_mix_v1_order_cancel_all_orders(request)`\n- `private_mix_post_mix_v1_order_close_all_positions(request)`\n- `private_mix_post_mix_v1_plan_placeplan(request)`\n- `private_mix_post_mix_v1_plan_modifyplan(request)`\n- `private_mix_post_mix_v1_plan_modifyplanpreset(request)`\n- `private_mix_post_mix_v1_plan_placetpsl(request)`\n- `private_mix_post_mix_v1_plan_placetrailstop(request)`\n- `private_mix_post_mix_v1_plan_placepositionstpsl(request)`\n- `private_mix_post_mix_v1_plan_modifytpslplan(request)`\n- `private_mix_post_mix_v1_plan_cancelplan(request)`\n- `private_mix_post_mix_v1_plan_cancelsymbolplan(request)`\n- `private_mix_post_mix_v1_plan_cancelallplan(request)`\n- `private_mix_post_mix_v1_trace_closetrackorder(request)`\n- `private_mix_post_mix_v1_trace_modifytpsl(request)`\n- `private_mix_post_mix_v1_trace_closetrackorderbysymbol(request)`\n- `private_mix_post_mix_v1_trace_setupcopysymbols(request)`\n- `private_mix_post_mix_v1_trace_followersetbatchtraceconfig(request)`\n- `private_mix_post_mix_v1_trace_followerclosebytrackingno(request)`\n- `private_mix_post_mix_v1_trace_followerclosebyall(request)`\n- `private_mix_post_mix_v1_trace_followersettpsl(request)`\n- `private_mix_post_mix_v1_trace_cancelcopytrader(request)`\n- `private_mix_post_mix_v1_trace_traderupdateconfig(request)`\n- `private_mix_post_mix_v1_trace_mytraderlist(request)`\n- `private_mix_post_mix_v1_trace_myfollowerlist(request)`\n- `private_mix_post_mix_v1_trace_removefollower(request)`\n- `private_mix_post_mix_v1_trace_public_getfollowerconfig(request)`\n- `private_mix_post_mix_v1_trace_report_order_historylist(request)`\n- `private_mix_post_mix_v1_trace_report_order_currentlist(request)`\n- `private_mix_post_mix_v1_trace_querytradertpslratioconfig(request)`\n- `private_mix_post_mix_v1_trace_traderupdatetpslratioconfig(request)`\n- `private_mix_post_v2_mix_account_set_leverage(request)`\n- `private_mix_post_v2_mix_account_set_margin(request)`\n- `private_mix_post_v2_mix_account_set_margin_mode(request)`\n- `private_mix_post_v2_mix_account_set_position_mode(request)`\n- `private_mix_post_v2_mix_order_place_order(request)`\n- `private_mix_post_v2_mix_order_click_backhand(request)`\n- `private_mix_post_v2_mix_order_batch_place_order(request)`\n- `private_mix_post_v2_mix_order_modify_order(request)`\n- `private_mix_post_v2_mix_order_cancel_order(request)`\n- `private_mix_post_v2_mix_order_batch_cancel_orders(request)`\n- `private_mix_post_v2_mix_order_close_positions(request)`\n- `private_mix_post_v2_mix_order_place_tpsl_order(request)`\n- `private_mix_post_v2_mix_order_place_plan_order(request)`\n- `private_mix_post_v2_mix_order_modify_tpsl_order(request)`\n- `private_mix_post_v2_mix_order_modify_plan_order(request)`\n- `private_mix_post_v2_mix_order_cancel_plan_order(request)`\n- `private_user_get_user_v1_fee_query(request)`\n- `private_user_get_user_v1_sub_virtual_list(request)`\n- `private_user_get_user_v1_sub_virtual_api_list(request)`\n- `private_user_get_user_v1_tax_spot_record(request)`\n- `private_user_get_user_v1_tax_future_record(request)`\n- `private_user_get_user_v1_tax_margin_record(request)`\n- `private_user_get_user_v1_tax_p2p_record(request)`\n- `private_user_get_v2_user_virtual_subaccount_list(request)`\n- `private_user_get_v2_user_virtual_subaccount_apikey_list(request)`\n- `private_user_post_user_v1_sub_virtual_create(request)`\n- `private_user_post_user_v1_sub_virtual_modify(request)`\n- `private_user_post_user_v1_sub_virtual_api_batch_create(request)`\n- `private_user_post_user_v1_sub_virtual_api_create(request)`\n- `private_user_post_user_v1_sub_virtual_api_modify(request)`\n- `private_user_post_v2_user_create_virtual_subaccount(request)`\n- `private_user_post_v2_user_modify_virtual_subaccount(request)`\n- `private_user_post_v2_user_batch_create_subaccount_and_apikey(request)`\n- `private_user_post_v2_user_create_virtual_subaccount_apikey(request)`\n- `private_user_post_v2_user_modify_virtual_subaccount_apikey(request)`\n- `private_p2p_get_p2p_v1_merchant_merchantlist(request)`\n- `private_p2p_get_p2p_v1_merchant_merchantinfo(request)`\n- `private_p2p_get_p2p_v1_merchant_advlist(request)`\n- `private_p2p_get_p2p_v1_merchant_orderlist(request)`\n- `private_p2p_get_v2_p2p_merchantlist(request)`\n- `private_p2p_get_v2_p2p_merchantinfo(request)`\n- `private_p2p_get_v2_p2p_orderlist(request)`\n- `private_p2p_get_v2_p2p_advlist(request)`\n- `private_broker_get_broker_v1_account_info(request)`\n- `private_broker_get_broker_v1_account_sub_list(request)`\n- `private_broker_get_broker_v1_account_sub_email(request)`\n- `private_broker_get_broker_v1_account_sub_spot_assets(request)`\n- `private_broker_get_broker_v1_account_sub_future_assets(request)`\n- `private_broker_get_broker_v1_account_subaccount_transfer(request)`\n- `private_broker_get_broker_v1_account_subaccount_deposit(request)`\n- `private_broker_get_broker_v1_account_subaccount_withdrawal(request)`\n- `private_broker_get_broker_v1_account_sub_api_list(request)`\n- `private_broker_get_v2_broker_account_info(request)`\n- `private_broker_get_v2_broker_account_subaccount_list(request)`\n- `private_broker_get_v2_broker_account_subaccount_email(request)`\n- `private_broker_get_v2_broker_account_subaccount_spot_assets(request)`\n- `private_broker_get_v2_broker_account_subaccount_future_assets(request)`\n- `private_broker_get_v2_broker_manage_subaccount_apikey_list(request)`\n- `private_broker_post_broker_v1_account_sub_create(request)`\n- `private_broker_post_broker_v1_account_sub_modify(request)`\n- `private_broker_post_broker_v1_account_sub_modify_email(request)`\n- `private_broker_post_broker_v1_account_sub_address(request)`\n- `private_broker_post_broker_v1_account_sub_withdrawal(request)`\n- `private_broker_post_broker_v1_account_sub_auto_transfer(request)`\n- `private_broker_post_broker_v1_account_sub_api_create(request)`\n- `private_broker_post_broker_v1_account_sub_api_modify(request)`\n- `private_broker_post_v2_broker_account_modify_subaccount_email(request)`\n- `private_broker_post_v2_broker_account_create_subaccount(request)`\n- `private_broker_post_v2_broker_account_modify_subaccount(request)`\n- `private_broker_post_v2_broker_account_subaccount_address(request)`\n- `private_broker_post_v2_broker_account_subaccount_withdrawal(request)`\n- `private_broker_post_v2_broker_account_set_subaccount_autotransfer(request)`\n- `private_broker_post_v2_broker_manage_create_subaccount_apikey(request)`\n- `private_broker_post_v2_broker_manage_modify_subaccount_apikey(request)`\n- `private_margin_get_margin_v1_cross_account_riskrate(request)`\n- `private_margin_get_margin_v1_cross_account_maxtransferoutamount(request)`\n- `private_margin_get_margin_v1_isolated_account_maxtransferoutamount(request)`\n- `private_margin_get_margin_v1_isolated_order_openorders(request)`\n- `private_margin_get_margin_v1_isolated_order_history(request)`\n- `private_margin_get_margin_v1_isolated_order_fills(request)`\n- `private_margin_get_margin_v1_isolated_loan_list(request)`\n- `private_margin_get_margin_v1_isolated_repay_list(request)`\n- `private_margin_get_margin_v1_isolated_interest_list(request)`\n- `private_margin_get_margin_v1_isolated_liquidation_list(request)`\n- `private_margin_get_margin_v1_isolated_fin_list(request)`\n- `private_margin_get_margin_v1_cross_order_openorders(request)`\n- `private_margin_get_margin_v1_cross_order_history(request)`\n- `private_margin_get_margin_v1_cross_order_fills(request)`\n- `private_margin_get_margin_v1_cross_loan_list(request)`\n- `private_margin_get_margin_v1_cross_repay_list(request)`\n- `private_margin_get_margin_v1_cross_interest_list(request)`\n- `private_margin_get_margin_v1_cross_liquidation_list(request)`\n- `private_margin_get_margin_v1_cross_fin_list(request)`\n- `private_margin_get_margin_v1_cross_account_assets(request)`\n- `private_margin_get_margin_v1_isolated_account_assets(request)`\n- `private_margin_get_v2_margin_crossed_borrow_history(request)`\n- `private_margin_get_v2_margin_crossed_repay_history(request)`\n- `private_margin_get_v2_margin_crossed_interest_history(request)`\n- `private_margin_get_v2_margin_crossed_liquidation_history(request)`\n- `private_margin_get_v2_margin_crossed_financial_records(request)`\n- `private_margin_get_v2_margin_crossed_account_assets(request)`\n- `private_margin_get_v2_margin_crossed_account_risk_rate(request)`\n- `private_margin_get_v2_margin_crossed_account_max_borrowable_amount(request)`\n- `private_margin_get_v2_margin_crossed_account_max_transfer_out_amount(request)`\n- `private_margin_get_v2_margin_crossed_interest_rate_and_limit(request)`\n- `private_margin_get_v2_margin_crossed_tier_data(request)`\n- `private_margin_get_v2_margin_crossed_open_orders(request)`\n- `private_margin_get_v2_margin_crossed_history_orders(request)`\n- `private_margin_get_v2_margin_crossed_fills(request)`\n- `private_margin_get_v2_margin_isolated_borrow_history(request)`\n- `private_margin_get_v2_margin_isolated_repay_history(request)`\n- `private_margin_get_v2_margin_isolated_interest_history(request)`\n- `private_margin_get_v2_margin_isolated_liquidation_history(request)`\n- `private_margin_get_v2_margin_isolated_financial_records(request)`\n- `private_margin_get_v2_margin_isolated_account_assets(request)`\n- `private_margin_get_v2_margin_isolated_account_risk_rate(request)`\n- `private_margin_get_v2_margin_isolated_account_max_borrowable_amount(request)`\n- `private_margin_get_v2_margin_isolated_account_max_transfer_out_amount(request)`\n- `private_margin_get_v2_margin_isolated_interest_rate_and_limit(request)`\n- `private_margin_get_v2_margin_isolated_tier_data(request)`\n- `private_margin_get_v2_margin_isolated_open_orders(request)`\n- `private_margin_get_v2_margin_isolated_history_orders(request)`\n- `private_margin_get_v2_margin_isolated_fills(request)`\n- `private_margin_post_margin_v1_cross_account_borrow(request)`\n- `private_margin_post_margin_v1_isolated_account_borrow(request)`\n- `private_margin_post_margin_v1_cross_account_repay(request)`\n- `private_margin_post_margin_v1_isolated_account_repay(request)`\n- `private_margin_post_margin_v1_isolated_account_riskrate(request)`\n- `private_margin_post_margin_v1_cross_account_maxborrowableamount(request)`\n- `private_margin_post_margin_v1_isolated_account_maxborrowableamount(request)`\n- `private_margin_post_margin_v1_isolated_account_flashrepay(request)`\n- `private_margin_post_margin_v1_isolated_account_queryflashrepaystatus(request)`\n- `private_margin_post_margin_v1_cross_account_flashrepay(request)`\n- `private_margin_post_margin_v1_cross_account_queryflashrepaystatus(request)`\n- `private_margin_post_margin_v1_isolated_order_placeorder(request)`\n- `private_margin_post_margin_v1_isolated_order_batchplaceorder(request)`\n- `private_margin_post_margin_v1_isolated_order_cancelorder(request)`\n- `private_margin_post_margin_v1_isolated_order_batchcancelorder(request)`\n- `private_margin_post_margin_v1_cross_order_placeorder(request)`\n- `private_margin_post_margin_v1_cross_order_batchplaceorder(request)`\n- `private_margin_post_margin_v1_cross_order_cancelorder(request)`\n- `private_margin_post_margin_v1_cross_order_batchcancelorder(request)`\n- `private_margin_post_v2_margin_crossed_account_borrow(request)`\n- `private_margin_post_v2_margin_crossed_account_repay(request)`\n- `private_margin_post_v2_margin_crossed_account_flash_repay(request)`\n- `private_margin_post_v2_margin_crossed_account_query_flash_repay_status(request)`\n- `private_margin_post_v2_margin_crossed_place_order(request)`\n- `private_margin_post_v2_margin_crossed_batch_place_order(request)`\n- `private_margin_post_v2_margin_crossed_cancel_order(request)`\n- `private_margin_post_v2_margin_crossed_batch_cancel_order(request)`\n- `private_margin_post_v2_margin_isolated_account_borrow(request)`\n- `private_margin_post_v2_margin_isolated_account_repay(request)`\n- `private_margin_post_v2_margin_isolated_account_flash_repay(request)`\n- `private_margin_post_v2_margin_isolated_account_query_flash_repay_status(request)`\n- `private_margin_post_v2_margin_isolated_place_order(request)`\n- `private_margin_post_v2_margin_isolated_batch_place_order(request)`\n- `private_margin_post_v2_margin_isolated_cancel_order(request)`\n- `private_margin_post_v2_margin_isolated_batch_cancel_order(request)`\n- `private_copy_get_v2_copy_mix_trader_order_current_track(request)`\n- `private_copy_get_v2_copy_mix_trader_order_history_track(request)`\n- `private_copy_get_v2_copy_mix_trader_order_total_detail(request)`\n- `private_copy_get_v2_copy_mix_trader_profit_history_summarys(request)`\n- `private_copy_get_v2_copy_mix_trader_profit_history_details(request)`\n- `private_copy_get_v2_copy_mix_trader_profit_details(request)`\n- `private_copy_get_v2_copy_mix_trader_profits_group_coin_date(request)`\n- `private_copy_get_v2_copy_mix_trader_config_query_symbols(request)`\n- `private_copy_get_v2_copy_mix_trader_config_query_followers(request)`\n- `private_copy_get_v2_copy_mix_follower_query_current_orders(request)`\n- `private_copy_get_v2_copy_mix_follower_query_history_orders(request)`\n- `private_copy_get_v2_copy_mix_follower_query_settings(request)`\n- `private_copy_get_v2_copy_mix_follower_query_traders(request)`\n- `private_copy_get_v2_copy_mix_follower_query_quantity_limit(request)`\n- `private_copy_get_v2_copy_mix_broker_query_traders(request)`\n- `private_copy_get_v2_copy_mix_broker_query_history_traces(request)`\n- `private_copy_get_v2_copy_mix_broker_query_current_traces(request)`\n- `private_copy_get_v2_copy_spot_trader_profit_summarys(request)`\n- `private_copy_get_v2_copy_spot_trader_profit_history_details(request)`\n- `private_copy_get_v2_copy_spot_trader_profit_details(request)`\n- `private_copy_get_v2_copy_spot_trader_order_total_detail(request)`\n- `private_copy_get_v2_copy_spot_trader_order_history_track(request)`\n- `private_copy_get_v2_copy_spot_trader_order_current_track(request)`\n- `private_copy_get_v2_copy_spot_trader_config_query_settings(request)`\n- `private_copy_get_v2_copy_spot_trader_config_query_followers(request)`\n- `private_copy_get_v2_copy_spot_follower_query_traders(request)`\n- `private_copy_get_v2_copy_spot_follower_query_trader_symbols(request)`\n- `private_copy_get_v2_copy_spot_follower_query_settings(request)`\n- `private_copy_get_v2_copy_spot_follower_query_history_orders(request)`\n- `private_copy_get_v2_copy_spot_follower_query_current_orders(request)`\n- `private_copy_post_v2_copy_mix_trader_order_modify_tpsl(request)`\n- `private_copy_post_v2_copy_mix_trader_order_close_positions(request)`\n- `private_copy_post_v2_copy_mix_trader_config_setting_symbols(request)`\n- `private_copy_post_v2_copy_mix_trader_config_setting_base(request)`\n- `private_copy_post_v2_copy_mix_trader_config_remove_follower(request)`\n- `private_copy_post_v2_copy_mix_follower_setting_tpsl(request)`\n- `private_copy_post_v2_copy_mix_follower_settings(request)`\n- `private_copy_post_v2_copy_mix_follower_close_positions(request)`\n- `private_copy_post_v2_copy_mix_follower_cancel_trader(request)`\n- `private_copy_post_v2_copy_spot_trader_order_modify_tpsl(request)`\n- `private_copy_post_v2_copy_spot_trader_order_close_tracking(request)`\n- `private_copy_post_v2_copy_spot_trader_config_setting_symbols(request)`\n- `private_copy_post_v2_copy_spot_trader_config_remove_follower(request)`\n- `private_copy_post_v2_copy_spot_follower_stop_order(request)`\n- `private_copy_post_v2_copy_spot_follower_settings(request)`\n- `private_copy_post_v2_copy_spot_follower_setting_tpsl(request)`\n- `private_copy_post_v2_copy_spot_follower_order_close_tracking(request)`\n- `private_copy_post_v2_copy_spot_follower_cancel_trader(request)`\n- `private_tax_get_v2_tax_spot_record(request)`\n- `private_tax_get_v2_tax_future_record(request)`\n- `private_tax_get_v2_tax_margin_record(request)`\n- `private_tax_get_v2_tax_p2p_record(request)`\n- `private_convert_get_v2_convert_currencies(request)`\n- `private_convert_get_v2_convert_quoted_price(request)`\n- `private_convert_get_v2_convert_convert_record(request)`\n- `private_convert_get_v2_convert_bgb_convert_coin_list(request)`\n- `private_convert_get_v2_convert_bgb_convert_records(request)`\n- `private_convert_post_v2_convert_trade(request)`\n- `private_convert_post_v2_convert_bgb_convert(request)`\n- `private_earn_get_v2_earn_savings_product(request)`\n- `private_earn_get_v2_earn_savings_account(request)`\n- `private_earn_get_v2_earn_savings_assets(request)`\n- `private_earn_get_v2_earn_savings_records(request)`\n- `private_earn_get_v2_earn_savings_subscribe_info(request)`\n- `private_earn_get_v2_earn_savings_subscribe_result(request)`\n- `private_earn_get_v2_earn_savings_redeem_result(request)`\n- `private_earn_get_v2_earn_sharkfin_product(request)`\n- `private_earn_get_v2_earn_sharkfin_account(request)`\n- `private_earn_get_v2_earn_sharkfin_assets(request)`\n- `private_earn_get_v2_earn_sharkfin_records(request)`\n- `private_earn_get_v2_earn_sharkfin_subscribe_info(request)`\n- `private_earn_get_v2_earn_sharkfin_subscribe_result(request)`\n- `private_earn_get_v2_earn_loan_ongoing_orders(request)`\n- `private_earn_get_v2_earn_loan_repay_history(request)`\n- `private_earn_get_v2_earn_loan_revise_history(request)`\n- `private_earn_get_v2_earn_loan_borrow_history(request)`\n- `private_earn_get_v2_earn_loan_debts(request)`\n- `private_earn_get_v2_earn_loan_reduces(request)`\n- `private_earn_get_v2_earn_account_assets(request)`\n- `private_earn_post_v2_earn_savings_subscribe(request)`\n- `private_earn_post_v2_earn_savings_redeem(request)`\n- `private_earn_post_v2_earn_sharkfin_subscribe(request)`\n- `private_earn_post_v2_earn_loan_borrow(request)`\n- `private_earn_post_v2_earn_loan_repay(request)`\n- `private_earn_post_v2_earn_loan_revise_pledge(request)`\n- `private_common_get_v2_common_trade_rate(request)`\n- `private_uta_get_v3_account_assets(request)`\n- `private_uta_get_v3_account_settings(request)`\n- `private_uta_get_v3_account_deposit_records(request)`\n- `private_uta_get_v3_account_financial_records(request)`\n- `private_uta_get_v3_account_repayable_coins(request)`\n- `private_uta_get_v3_account_payment_coins(request)`\n- `private_uta_get_v3_account_convert_records(request)`\n- `private_uta_get_v3_account_transferable_coins(request)`\n- `private_uta_get_v3_account_sub_transfer_record(request)`\n- `private_uta_get_v3_ins_loan_transfered(request)`\n- `private_uta_get_v3_ins_loan_symbols(request)`\n- `private_uta_get_v3_ins_loan_risk_unit(request)`\n- `private_uta_get_v3_ins_loan_repaid_history(request)`\n- `private_uta_get_v3_ins_loan_product_infos(request)`\n- `private_uta_get_v3_ins_loan_loan_order(request)`\n- `private_uta_get_v3_ins_loan_ltv_convert(request)`\n- `private_uta_get_v3_ins_loan_ensure_coins_convert(request)`\n- `private_uta_get_v3_position_current_position(request)`\n- `private_uta_get_v3_position_history_position(request)`\n- `private_uta_get_v3_trade_order_info(request)`\n- `private_uta_get_v3_trade_unfilled_orders(request)`\n- `private_uta_get_v3_trade_unfilled_strategy_orders(request)`\n- `private_uta_get_v3_trade_history_orders(request)`\n- `private_uta_get_v3_trade_history_strategy_orders(request)`\n- `private_uta_get_v3_trade_fills(request)`\n- `private_uta_get_v3_user_sub_list(request)`\n- `private_uta_get_v3_user_sub_api_list(request)`\n- `private_uta_post_v3_account_set_leverage(request)`\n- `private_uta_post_v3_account_set_hold_mode(request)`\n- `private_uta_post_v3_account_repay(request)`\n- `private_uta_post_v3_account_transfer(request)`\n- `private_uta_post_v3_account_sub_transfer(request)`\n- `private_uta_post_v3_account_max_open_available(request)`\n- `private_uta_post_v3_ins_loan_bind_uid(request)`\n- `private_uta_post_v3_trade_place_order(request)`\n- `private_uta_post_v3_trade_place_strategy_order(request)`\n- `private_uta_post_v3_trade_modify_order(request)`\n- `private_uta_post_v3_trade_modify_strategy_order(request)`\n- `private_uta_post_v3_trade_cancel_order(request)`\n- `private_uta_post_v3_trade_cancel_strategy_order(request)`\n- `private_uta_post_v3_trade_place_batch(request)`\n- `private_uta_post_v3_trade_batch_modify_order(request)`\n- `private_uta_post_v3_trade_cancel_batch(request)`\n- `private_uta_post_v3_trade_cancel_symbol_order(request)`\n- `private_uta_post_v3_trade_close_positions(request)`\n- `private_uta_post_v3_user_create_sub(request)`\n- `private_uta_post_v3_user_freeze_sub(request)`\n- `private_uta_post_v3_user_create_sub_api(request)`\n- `private_uta_post_v3_user_update_sub_api(request)`\n- `private_uta_post_v3_user_delete_sub_api(request)`\n\n### WS Unified\n\n- `describe(self)`\n- `get_inst_type(self, market, uta: bool = False, params={})`\n- `watch_ticker(self, symbol: str, params={})`\n- `un_watch_ticker(self, symbol: str, params={})`\n- `watch_tickers(self, symbols: Strings = None, params={})`\n- `watch_bids_asks(self, symbols: Strings = None, params={})`\n- `watch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={})`\n- `un_watch_ohlcv(self, symbol: str, timeframe: str = '1m', params={})`\n- `watch_order_book(self, symbol: str, limit: Int = None, params={})`\n- `un_watch_order_book(self, symbol: str, params={})`\n- `un_watch_channel(self, symbol: str, channel: str, messageHashTopic: str, params={})`\n- `watch_order_book_for_symbols(self, symbols: List[str], limit: Int = None, params={})`\n- `watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={})`\n- `watch_trades_for_symbols(self, symbols: List[str], since: Int = None, limit: Int = None, params={})`\n- `un_watch_trades(self, symbol: str, params={})`\n- `watch_positions(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={})`\n- `watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`\n- `watch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`\n- `watch_balance(self, params={})`\n- `watch_public(self, messageHash, args, params={})`\n- `un_watch_public(self, messageHash, args, params={})`\n- `watch_public_multiple(self, messageHashes, argsArray, params={})`\n- `authenticate(self, params={})`\n- `watch_private(self, messageHash, subscriptionHash, args, params={})`\n\n## Contribution\n- Give us a star :star:\n- Fork and Clone! Awesome\n- Select existing issues or create a new issue.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccxt%2Fbitget-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fccxt%2Fbitget-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccxt%2Fbitget-python/lists"}