data
Binance MCP, CLI, and Lua Integration for AI Agents
Binance integration docs for AI agents: MCP gateway setup, Binance CLI commands, Lua API reference, credentials, and function schemas.Binance for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
binance.binance_get_api_v3_ping | Read read | 0 | Test Connectivity Test connectivity to the Rest API. Weight(IP): 1 Official Binance Spot endpoint: GET /api/v3/ping. |
binance.binance_get_api_v3_time | Read read | 0 | Check Server Time Test connectivity to the Rest API and get the current server time. Weight(IP): 1 Official Binance Spot endpoint: GET /api/v3/time. |
binance.binance_get_api_v3_exchangeinfo | Read read | 3 | Exchange Information Current exchange trading rules and symbol information - If any symbol provided in either symbol or symbols do not exist, the endpoint will throw an error. - All parameters are optional. - permissions can support single or multiple values (e.g. SPOT, ["MARGIN","LEVERAGED"]) - If permissions parameter not provided, the default values will be ["SPOT","MARGIN","LEVERAGED"]. - To display all permissions you need to specify them explicitly. (e.g. SPOT, MARGIN,...) Examples of Symbol Permissions Interpretation from the Response: - [["A","B"]] means you may place an order if your account has either permission "A" or permission "B". - [["A"],["B"]] means you can place an order if your account has permission "A" and permission "B". - [["A"],["B","C"]] means you can place an order if your account has permission "A" and permission "B" or permission "C". (Inclusive or is applied here, not exclusive or, so your account may have both permission "B" and permission "C".) Weight(IP): 10 Official Binance Spot endpoint: GET /api/v3/exchangeInfo. |
binance.binance_get_api_v3_depth | Read read | 2 | Order Book | Limit | Weight(IP) | |---------------------|-------------| | 1-100 | 5 | | 101-500 | 25 | | 501-1000 | 50 | | 1001-5000 | 250 | Official Binance Spot endpoint: GET /api/v3/depth. |
binance.binance_get_api_v3_trades | Read read | 2 | Recent Trades List Get recent trades. Weight(IP): 10 Official Binance Spot endpoint: GET /api/v3/trades. |
binance.binance_get_api_v3_historicaltrades | Read read | 3 | Old Trade Lookup Get older market trades. Weight(IP): 10 Official Binance Spot endpoint: GET /api/v3/historicalTrades. |
binance.binance_get_api_v3_aggtrades | Read read | 5 | Compressed/Aggregate Trades List Get compressed, aggregate trades. Trades that fill at the time, from the same order, with the same price will have the quantity aggregated. - If `fromId`, `startTime`, and `endTime` are not sent, the most recent aggregate trades will be returned. - Note that if a trade has the following values, this was a duplicate aggregate trade and marked as invalid: p = '0' // price q = '0' // qty f = -1 // first_trade_id l = -1 // last_trade_id Weight(IP): 2 Official Binance Spot endpoint: GET /api/v3/aggTrades. |
binance.binance_get_api_v3_klines | Read read | 6 | Kline/Candlestick Data Kline/candlestick bars for a symbol. Klines are uniquely identified by their open time. - If `startTime` and `endTime` are not sent, the most recent klines are returned. Weight(IP): 2 Official Binance Spot endpoint: GET /api/v3/klines. |
binance.binance_get_api_v3_uiklines | Read read | 6 | UIKlines The request is similar to klines having the same parameters and response. uiKlines return modified kline data, optimized for presentation of candlestick charts. Weight(IP): 2 Official Binance Spot endpoint: GET /api/v3/uiKlines. |
binance.binance_get_api_v3_avgprice | Read read | 1 | Current Average Price Current average price for a symbol. Weight(IP): 2 Official Binance Spot endpoint: GET /api/v3/avgPrice. |
binance.binance_get_api_v3_ticker_24hr | Read read | 3 | 24hr Ticker Price Change Statistics 24 hour rolling window price change statistics. Careful when accessing this with no symbol. - If the symbol is not sent, tickers for all symbols will be returned in an array. Weight(IP): - `2` for a single symbol; - `80` when the symbol parameter is omitted; Official Binance Spot endpoint: GET /api/v3/ticker/24hr. |
binance.binance_get_api_v3_ticker_tradingday | Read read | 4 | Trading Day Ticker Price change statistics for a trading day. Notes: - Supported values for timeZone: - Hours and minutes (e.g. -1:00, 05:45) - Only hours (e.g. 0, 8, 4) Weight: - `4` for each requested symbol. - The weight for this request will cap at `200` once the number of symbols in the request is more than `50`. Official Binance Spot endpoint: GET /api/v3/ticker/tradingDay. |
binance.binance_get_api_v3_ticker_price | Read read | 2 | Symbol Price Ticker Latest price for a symbol or symbols. - If the symbol is not sent, prices for all symbols will be returned in an array. Weight(IP): - `2` for a single symbol; - `4` when the symbol parameter is omitted; Official Binance Spot endpoint: GET /api/v3/ticker/price. |
binance.binance_get_api_v3_ticker_bookticker | Read read | 2 | Symbol Order Book Ticker Best price/qty on the order book for a symbol or symbols. - If the symbol is not sent, bookTickers for all symbols will be returned in an array. Weight(IP): - `2` for a single symbol; - `4` when the symbol parameter is omitted; Official Binance Spot endpoint: GET /api/v3/ticker/bookTicker. |
binance.binance_get_api_v3_ticker | Read read | 4 | Rolling window price change statistics The window used to compute statistics is typically slightly wider than requested windowSize. openTime for /api/v3/ticker always starts on a minute, while the closeTime is the current time of the request. As such, the effective window might be up to 1 minute wider than requested. E.g. If the closeTime is 1641287867099 (January 04, 2022 09:17:47:099 UTC) , and the windowSize is 1d. the openTime will be: 1641201420000 (January 3, 2022, 09:17:00 UTC) Weight(IP): 4 for each requested symbol regardless of windowSize. The weight for this request will cap at 200 once the number of symbols in the request is more than 50. Official Binance Spot endpoint: GET /api/v3/ticker. |
binance.binance_post_api_v3_order_test | Read read | 17 | Test New Order (TRADE) Test new order creation and signature/recvWindow long. Creates and validates a new order but does not send it into the matching engine. Weight(IP): - Without computeCommissionRates: `1` - With computeCommissionRates: `20` Official Binance Spot endpoint: POST /api/v3/order/test. |
binance.binance_get_api_v3_order | Read read | 5 | Query Order (USER_DATA) Check an order's status. - Either `orderId` or `origClientOrderId` must be sent. - For some historical orders `cummulativeQuoteQty` will be < 0, meaning the data is not available at this time. Weight(IP): 4 Official Binance Spot endpoint: GET /api/v3/order. |
binance.binance_post_api_v3_order | Read read | 17 | New Order (TRADE) Send in a new order. - `LIMIT_MAKER` are `LIMIT` orders that will be rejected if they would immediately match and trade as a taker. - `STOP_LOSS` and `TAKE_PROFIT` will execute a `MARKET` order when the `stopPrice` is reached. - Any `LIMIT` or `LIMIT_MAKER` type order can be made an iceberg order by sending an `icebergQty`. - Any order with an `icebergQty` MUST have `timeInForce` set to `GTC`. - `MARKET` orders using `quantity` specifies how much a user wants to buy or sell based on the market price. - `MARKET` orders using `quoteOrderQty` specifies the amount the user wants to spend (when buying) or receive (when selling) of the quote asset; the correct quantity will be determined based on the market liquidity and `quoteOrderQty`. - `MARKET` orders using `quoteOrderQty` will not break `LOT_SIZE` filter rules; the order will execute a quantity that will have the notional value as close as possible to `quoteOrderQty`. - same `newClientOrderId` can be accepted only when the previous one Official Binance Spot endpoint: POST /api/v3/order. |
binance.binance_delete_api_v3_order | Write write | 7 | Cancel Order (TRADE) Cancel an active order. Either `orderId` or `origClientOrderId` must be sent. Weight(IP): 1 Official Binance Spot endpoint: DELETE /api/v3/order. |
binance.binance_post_api_v3_order_cancelreplace | Read read | 22 | Cancel an Existing Order and Send a New Order (Trade) Cancels an existing order and places a new order on the same symbol. Filters and Order Count are evaluated before the processing of the cancellation and order placement occurs. A new order that was not attempted (i.e. when newOrderResult: NOT_ATTEMPTED), will still increase the order count by 1. Weight(IP): 1 Official Binance Spot endpoint: POST /api/v3/order/cancelReplace. |
binance.binance_get_api_v3_openorders | Read read | 3 | Current Open Orders (USER_DATA) Get all open orders on a symbol. Careful when accessing this with no symbol. Weight(IP): - `6` for a single symbol; - `80` when the symbol parameter is omitted; Official Binance Spot endpoint: GET /api/v3/openOrders. |
binance.binance_delete_api_v3_openorders | Write write | 3 | Cancel all Open Orders on a Symbol (TRADE) Cancels all active orders on a symbol. This includes OCO orders. Weight(IP): 1 Official Binance Spot endpoint: DELETE /api/v3/openOrders. |
binance.binance_get_api_v3_allorders | Read read | 7 | All Orders (USER_DATA) Get all account orders; active, canceled, or filled.. - If `orderId` is set, it will get orders >= that `orderId`. Otherwise most recent orders are returned. - For some historical orders `cummulativeQuoteQty` will be < 0, meaning the data is not available at this time. - If `startTime` and/or `endTime` provided, `orderId` is not required Weight(IP): 20 Official Binance Spot endpoint: GET /api/v3/allOrders. |
binance.binance_post_api_v3_orderlist_oco | Read read | 26 | New Order list - OCO (TRADE) Send in an one-cancels-the-other (OCO) pair, where activation of one order immediately cancels the other. - An `OCO` has 2 orders called the above order and below order. - One of the orders must be a `LIMIT_MAKER` order and the other must be `STOP_LOSS` or`STOP_LOSS_LIMIT` order. - Price restrictions: - If the `OCO` is on the `SELL` side: `LIMIT_MAKER` price > Last Traded Price > stopPrice - If the `OCO` is on the `BUY` side: `LIMIT_MAKER` price < Last Traded Price < stopPrice - OCOs add 2 orders to the unfilled order count, `EXCHANGE_MAX_ORDERS` filter, and the `MAX_NUM_ORDERS` filter. Weight(IP): 1 Official Binance Spot endpoint: POST /api/v3/orderList/oco. |
binance.binance_post_api_v3_orderlist_oto | Read read | 25 | New Order List - OTO (TRADE) Places an `OTO`. - An `OTO` (One-Triggers-the-Other) is an order list comprised of 2 orders. - The first order is called the working order and must be `LIMIT` or `LIMIT_MAKER`. Initially, only the working order goes on the order book. - The second order is called the pending order. It can be any order type except for `MARKET` orders using parameter `quoteOrderQty`. The pending order is only placed on the order book when the working order gets fully filled. - If either the working order or the pending order is cancelled individually, the other order in the order list will also be canceled or expired. - When the order list is placed, if the working order gets immediately fully filled, the placement response will show the working order as `FILLED` but the pending order will still appear as `PENDING_NEW`. You need to query the status of the pending order again to see its updated status. - OTOs add 2 orders to the unfilled order count, `EXCHANGE_MAX_NUM_ORDERS` filter and `MAX_NUM_ORDERS` f Official Binance Spot endpoint: POST /api/v3/orderList/oto. |
binance.binance_post_api_v3_orderlist_otoco | Read read | 35 | New Order List - OTOCO (TRADE) Place an `OTOCO`. - An `OTOCO` (One-Triggers-One-Cancels-the-Other) is an order list comprised of 3 orders. - The first order is called the working order and must be `LIMIT` or `LIMIT_MAKER`. Initially, only the working order goes on the order book. - The behavior of the working order is the same as the `OTO`. - `OTOCO` has 2 pending orders (pending above and pending below), forming an `OCO` pair. The pending orders are only placed on the order book when the working order gets fully filled. - The rules of the pending above and pending below follow the same rules as the Order List `OCO`. - OTOCOs add 3 orders against the unfilled order count, `EXCHANGE_MAX_NUM_ORDERS` filter, and `MAX_NUM_ORDERS` filter. Weight: 1 Official Binance Spot endpoint: POST /api/v3/orderList/otoco. |
binance.binance_get_api_v3_orderlist | Read read | 4 | Query OCO (USER_DATA) Retrieves a specific OCO based on provided optional parameters Weight(IP): 4 Official Binance Spot endpoint: GET /api/v3/orderList. |
binance.binance_delete_api_v3_orderlist | Write write | 6 | Cancel OCO (TRADE) Cancel an entire Order List Canceling an individual leg will cancel the entire OCO Weight(IP): 1 Official Binance Spot endpoint: DELETE /api/v3/orderList. |
binance.binance_get_api_v3_allorderlist | Read read | 6 | Query all OCO (USER_DATA) Retrieves all OCO based on provided optional parameters Weight(IP): 20 Official Binance Spot endpoint: GET /api/v3/allOrderList. |
binance.binance_get_api_v3_openorderlist | Read read | 2 | Query Open OCO (USER_DATA) Weight(IP): 6 Official Binance Spot endpoint: GET /api/v3/openOrderList. |
binance.binance_post_api_v3_sor_order | Read read | 14 | New order using SOR (TRADE) Weight(IP): 6 Official Binance Spot endpoint: POST /api/v3/sor/order. |
binance.binance_post_api_v3_sor_order_test | Read read | 15 | Test new order using SOR (TRADE) Test new order creation and signature/recvWindow using smart order routing (SOR). Creates and validates a new order but does not send it into the matching engine. Weight(IP): - Without computeCommissionRates: `1` - With computeCommissionRates: `20` Official Binance Spot endpoint: POST /api/v3/sor/order/test. |
binance.binance_get_api_v3_account | Read read | 2 | Account Information (USER_DATA) Get current account information. Weight(IP): 20 Official Binance Spot endpoint: GET /api/v3/account. |
binance.binance_get_api_v3_mytrades | Read read | 8 | Account Trade List (USER_DATA) Get trades for a specific account and symbol. If `fromId` is set, it will get id >= that `fromId`. Otherwise most recent orders are returned. The time between startTime and endTime can't be longer than 24 hours. These are the supported combinations of all parameters: symbol symbol + orderId symbol + startTime symbol + endTime symbol + fromId symbol + startTime + endTime symbol+ orderId + fromId Weight(IP): 20 Official Binance Spot endpoint: GET /api/v3/myTrades. |
binance.binance_get_api_v3_ratelimit_order | Read read | 2 | Query Current Order Count Usage (TRADE) Displays the user's current order count usage for all intervals. Weight(IP): 40 Official Binance Spot endpoint: GET /api/v3/rateLimit/order. |
binance.binance_get_api_v3_mypreventedmatches | Read read | 7 | Query Prevented Matches Displays the list of orders that were expired because of STP. For additional information on what a Prevented match is, as well as Self Trade Prevention (STP), please refer to our STP FAQ page. These are the combinations supported: * symbol + preventedMatchId * symbol + orderId * symbol + orderId + fromPreventedMatchId (limit will default to 500) * symbol + orderId + fromPreventedMatchId + limit Weight(IP): Case Weight If symbol is invalid: 2 Querying by preventedMatchId: 2 Querying by orderId: 20 Official Binance Spot endpoint: GET /api/v3/myPreventedMatches. |
binance.binance_get_api_v3_myallocations | Read read | 8 | Query Allocations (USER_DATA) Retrieves allocations resulting from SOR order placement. Weight: 20 Supported parameter combinations: Parameters Response symbol allocations from oldest to newest symbol + startTime oldest allocations since startTime symbol + endTime newest allocations until endTime symbol + startTime + endTime allocations within the time range symbol + fromAllocationId allocations by allocation ID symbol + orderId allocations related to an order starting with oldest symbol + orderId + fromAllocationId allocations related to an order by allocation ID Note: The time between startTime and endTime can't be longer than 24 hours. Official Binance Spot endpoint: GET /api/v3/myAllocations. |
binance.binance_get_api_v3_account_commission | Read read | 2 | Query Commission Rates (USER_DATA) Get current account commission rates. Weight: 20 Official Binance Spot endpoint: GET /api/v3/account/commission. |
binance.binance_post_sapi_v1_margin_borrow_repay | Read read | 7 | Margin account borrow/repay(MARGIN) Margin account borrow/repay(MARGIN) Weight(UID): 3000 Official Binance Spot endpoint: POST /sapi/v1/margin/borrow-repay. |
binance.binance_get_sapi_v1_margin_borrow_repay | Read read | 10 | Query borrow/repay records in Margin account(USER_DATA) Query borrow/repay records in Margin account - txId or startTime must be sent. txId takes precedence. Response in descending order - If an asset is sent, data within 30 days before endTime; If an asset is not sent, data within 7 days before endTime - If neither startTime nor endTime is sent, the recent 7-day data will be returned. - startTime set as endTime - 7 days by default, endTime set as current time by default Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/margin/borrow-repay. |
binance.binance_get_sapi_v1_margin_transfer | Read read | 9 | Get Cross Margin Transfer History (USER_DATA) - Response in descending order - Returns data for last 7 days by default - Set `archived` to `true` to query data from 6 months ago Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/margin/transfer. |
binance.binance_get_sapi_v1_margin_allassets | Read read | 1 | Get All Margin Assets (MARKET_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/margin/allAssets. |
binance.binance_get_sapi_v1_margin_allpairs | Read read | 1 | Get All Cross Margin Pairs (MARKET_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/margin/allPairs. |
binance.binance_get_sapi_v1_margin_priceindex | Read read | 1 | Query Margin PriceIndex (MARKET_DATA) Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/margin/priceIndex. |
binance.binance_get_sapi_v1_margin_order | Read read | 6 | Query Margin Account's Order (USER_DATA) - Either `orderId` or `origClientOrderId` must be sent. - For some historical orders `cummulativeQuoteQty` will be < 0, meaning the data is not available at this time. Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/margin/order. |
binance.binance_post_sapi_v1_margin_order | Read read | 17 | Margin Account New Order (TRADE) Post a new order for margin account. Weight(UID): 6 Official Binance Spot endpoint: POST /sapi/v1/margin/order. |
binance.binance_delete_sapi_v1_margin_order | Write write | 7 | Margin Account Cancel Order (TRADE) Cancel an active order for margin account. Either `orderId` or `origClientOrderId` must be sent. Weight(IP): 10 Official Binance Spot endpoint: DELETE /sapi/v1/margin/order. |
binance.binance_get_sapi_v1_margin_interesthistory | Read read | 9 | Get Interest History (USER_DATA) - Response in descending order - If `isolatedSymbol` is not sent, crossed margin data will be returned - Set `archived` to `true` to query data from 6 months ago - `type` in response has 4 enums: - `PERIODIC` interest charged per hour - `ON_BORROW` first interest charged on borrow - `PERIODIC_CONVERTED` interest charged per hour converted into BNB - `ON_BORROW_CONVERTED` first interest charged on borrow converted into BNB Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/margin/interestHistory. |
binance.binance_get_sapi_v1_margin_forceliquidationrec | Read read | 7 | Get Force Liquidation Record (USER_DATA) - Response in descending order Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/margin/forceLiquidationRec. |
binance.binance_get_sapi_v1_margin_account | Read read | 2 | Query Cross Margin Account Details (USER_DATA) Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/margin/account. |
binance.binance_get_sapi_v1_margin_openorders | Read read | 4 | Query Margin Account's Open Orders (USER_DATA) - If the `symbol` is not sent, orders for all symbols will be returned in an array. - When all symbols are returned, the number of requests counted against the rate limiter is equal to the number of symbols currently trading on the exchange - If isIsolated ="TRUE", symbol must be sent. Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/margin/openOrders. |
binance.binance_delete_sapi_v1_margin_openorders | Write write | 4 | Margin Account Cancel all Open Orders on a Symbol (TRADE) - Cancels all active orders on a symbol for margin account. - This includes OCO orders. Weight(IP): 1 Official Binance Spot endpoint: DELETE /sapi/v1/margin/openOrders. |
binance.binance_get_sapi_v1_margin_allorders | Read read | 8 | Query Margin Account's All Orders (USER_DATA) - If `orderId` is set, it will get orders >= that orderId. Otherwise most recent orders are returned. - For some historical orders `cummulativeQuoteQty` will be < 0, meaning the data is not available at this time. Weight(IP): 200 Request Limit: 60 times/min per IP Official Binance Spot endpoint: GET /sapi/v1/margin/allOrders. |
binance.binance_post_sapi_v1_margin_order_oco | Read read | 18 | Margin Account New OCO (TRADE) Send in a new OCO for a margin account - Price Restrictions: - SELL: Limit Price > Last Price > Stop Price - BUY: Limit Price < Last Price < Stop Price - Quantity Restrictions: - Both legs must have the same quantity - ICEBERG quantities however do not have to be the same. - Order Rate Limit - OCO counts as 2 orders against the order rate limit. Weight(UID): 6 Official Binance Spot endpoint: POST /sapi/v1/margin/order/oco. |
binance.binance_get_sapi_v1_margin_orderlist | Read read | 6 | Query Margin Account's OCO (USER_DATA) Retrieves a specific OCO based on provided optional parameters - Either `orderListId` or `origClientOrderId` must be provided Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/margin/orderList. |
binance.binance_delete_sapi_v1_margin_orderlist | Write write | 7 | Margin Account Cancel OCO (TRADE) Cancel an entire Order List for a margin account - Canceling an individual leg will cancel the entire OCO - Either `orderListId` or `listClientOrderId` must be provided Weight(UID): 1 Official Binance Spot endpoint: DELETE /sapi/v1/margin/orderList. |
binance.binance_get_sapi_v1_margin_allorderlist | Read read | 8 | Query Margin Account's all OCO (USER_DATA) Retrieves all OCO for a specific margin account based on provided optional parameters Weight(IP): 200 Official Binance Spot endpoint: GET /sapi/v1/margin/allOrderList. |
binance.binance_get_sapi_v1_margin_openorderlist | Read read | 4 | Query Margin Account's Open OCO (USER_DATA) Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/margin/openOrderList. |
binance.binance_get_sapi_v1_margin_mytrades | Read read | 8 | Query Margin Account's Trade List (USER_DATA) - If `fromId` is set, it will get orders >= that `fromId`. Otherwise most recent trades are returned. Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/margin/myTrades. |
binance.binance_get_sapi_v1_margin_maxborrowable | Read read | 4 | Query Max Borrow (USER_DATA) - If `isolatedSymbol` is not sent, crossed margin data will be sent. - `borrowLimit` is also available from https://www.binance.com/en/margin-fee Weight(IP): 50 Official Binance Spot endpoint: GET /sapi/v1/margin/maxBorrowable. |
binance.binance_get_sapi_v1_margin_maxtransferable | Read read | 4 | Query Max Transfer-Out Amount (USER_DATA) - If `isolatedSymbol` is not sent, crossed margin data will be sent. Weight(IP): 50 Official Binance Spot endpoint: GET /sapi/v1/margin/maxTransferable. |
binance.binance_get_sapi_v1_margin_tradecoeff | Read read | 3 | Get Summary of Margin account (USER_DATA) Get personal margin level information Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/margin/tradeCoeff. |
binance.binance_get_sapi_v1_margin_isolated_account | Read read | 3 | Query Isolated Margin Account Info (USER_DATA) - If "symbols" is not sent, all isolated assets will be returned. - If "symbols" is sent, only the isolated assets of the sent symbols will be returned. Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/margin/isolated/account. |
binance.binance_delete_sapi_v1_margin_isolated_account | Write write | 3 | Disable Isolated Margin Account (TRADE) Disable isolated margin account for a specific symbol. Each trading pair can only be deactivated once every 24 hours . Weight(UID): 300 Official Binance Spot endpoint: DELETE /sapi/v1/margin/isolated/account. |
binance.binance_post_sapi_v1_margin_isolated_account | Read read | 3 | Enable Isolated Margin Account (TRADE) Enable isolated margin account for a specific symbol. Weight(UID): 300 Official Binance Spot endpoint: POST /sapi/v1/margin/isolated/account. |
binance.binance_get_sapi_v1_margin_isolated_accountlimit | Read read | 2 | Query Enabled Isolated Margin Account Limit (USER_DATA) Query enabled isolated margin account limit. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/margin/isolated/accountLimit. |
binance.binance_get_sapi_v1_margin_isolated_allpairs | Read read | 3 | Get All Isolated Margin Symbol(USER_DATA) Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/margin/isolated/allPairs. |
binance.binance_post_sapi_v1_bnbburn | Read read | 4 | Toggle BNB Burn On Spot Trade And Margin Interest (USER_DATA) - "spotBNBBurn" and "interestBNBBurn" should be sent at least one. Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/bnbBurn. |
binance.binance_get_sapi_v1_bnbburn | Read read | 2 | Get BNB Burn Status(USER_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/bnbBurn. |
binance.binance_get_sapi_v1_margin_interestratehistory | Read read | 6 | Margin Interest Rate History (USER_DATA) The max interval between startTime and endTime is 30 days. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/margin/interestRateHistory. |
binance.binance_get_sapi_v1_margin_crossmargindata | Read read | 4 | Query Cross Margin Fee Data (USER_DATA) Get cross margin fee data collection with any vip level or user's current specific data as https://www.binance.com/en/margin-fee Weight(IP): 1 when coin is specified; 5 when the coin parameter is omitted Official Binance Spot endpoint: GET /sapi/v1/margin/crossMarginData. |
binance.binance_get_sapi_v1_margin_isolatedmargindata | Read read | 4 | Query Isolated Margin Fee Data (USER_DATA) Get isolated margin fee data collection with any vip level or user's current specific data as https://www.binance.com/en/margin-fee Weight(IP): 1 when a single is specified; 10 when the symbol parameter is omitted Official Binance Spot endpoint: GET /sapi/v1/margin/isolatedMarginData. |
binance.binance_get_sapi_v1_margin_isolatedmargintier | Read read | 4 | Query Isolated Margin Tier Data (USER_DATA) Get isolated margin tier data collection with any tier as https://www.binance.com/en/margin-data Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/margin/isolatedMarginTier. |
binance.binance_get_sapi_v1_margin_ratelimit_order | Read read | 4 | Query Current Margin Order Count Usage (TRADE) Displays the user's current margin order count usage for all intervals. Weight(IP): 20 Official Binance Spot endpoint: GET /sapi/v1/margin/rateLimit/order. |
binance.binance_get_sapi_v1_margin_crossmargincollateralratio | Read read | 0 | Cross margin collateral ratio (MARKET_DATA) Weight(IP): 100 Official Binance Spot endpoint: GET /sapi/v1/margin/crossMarginCollateralRatio. |
binance.binance_get_sapi_v1_margin_exchange_small_liability | Read read | 2 | Get Small Liability Exchange Coin List (USER_DATA) Query the coins which can be small liability exchange Weight(UID): 100 Official Binance Spot endpoint: GET /sapi/v1/margin/exchange-small-liability. |
binance.binance_get_sapi_v1_margin_exchange_small_liability_history | Read read | 6 | Get Small Liability Exchange History (USER_DATA) Get Small liability Exchange History Weight(UID): 100 Official Binance Spot endpoint: GET /sapi/v1/margin/exchange-small-liability-history. |
binance.binance_get_sapi_v1_margin_next_hourly_interest_rate | Read read | 4 | Get a future hourly interest rate (USER_DATA) Get user the next hourly estimate interest Weight(UID): 100 Official Binance Spot endpoint: GET /sapi/v1/margin/next-hourly-interest-rate. |
binance.binance_get_sapi_v1_margin_capital_flow | Read read | 9 | Get cross or isolated margin capital flow(USER_DATA) Get cross or isolated margin capital flow Weight(IP): 100 Official Binance Spot endpoint: GET /sapi/v1/margin/capital-flow. |
binance.binance_get_sapi_v1_margin_delist_schedule | Read read | 2 | Get tokens or symbols delist schedule for cross margin and isolated margin (MARKET_DATA) Get tokens or symbols delist schedule for cross margin and isolated margin Weight(IP): 100 Official Binance Spot endpoint: GET /sapi/v1/margin/delist-schedule. |
binance.binance_get_sapi_v1_margin_available_inventory | Read read | 2 | Query Margin Available Inventory (USER_DATA) Margin available Inventory query Weight(UID): 50 Official Binance Spot endpoint: GET /sapi/v1/margin/available-inventory. |
binance.binance_post_sapi_v1_margin_manual_liquidation | Read read | 3 | Margin manual liquidation(MARGIN) Margin manual liquidation Weight(UID): 3000 Official Binance Spot endpoint: POST /sapi/v1/margin/manual-liquidation. |
binance.binance_post_sapi_v1_margin_order_oto | Read read | 24 | Margin Account New OTO (TRADE) Post a new `OTO` order for margin account: - An `OTO` (One-Triggers-the-Other) is an order list comprised of 2 orders - The first order is called the working order and must be `LIMIT` or `LIMIT_MAKER`. Initially, only the working order goes on the order book. - The second order is called the pending order. It can be any order type except for `MARKET` orders using parameter `quoteOrderQty`. The pending order is only placed on the order book when the working order gets fully filled. - If either the working order or the pending order is cancelled individually, the other order in the order list will also be canceled or expired. - When the order list is placed, if the working order gets immediately fully filled, the placement response will show the working order as `FILLED` but the pending order will still appear as `PENDING_NEW`. You need to query the status of the pending order again to see its updated status. - OTOs add 2 orders to the unfilled order count, `EXCHANGE_MAX_NUM_ORDERS` filt Official Binance Spot endpoint: POST /sapi/v1/margin/order/oto. |
binance.binance_post_sapi_v1_margin_order_otoco | Read read | 31 | Margin Account New OTOCO (TRADE) Post a new `OTOCO` order for margin account: - An `OTOCO` (One-Triggers-the-Other-Cancel-the-Other) is an order list comprised of 3 orders - The first order is called the working order and must be `LIMIT` or `LIMIT_MAKER`. Initially, only the working order goes on the order book. - The behavior of the working order is the same as the `OTO`. - `OTOCO` has 2 pending orders (pending above and pending below), forming an `OCO` pair. The pending orders are only placed on the order book when the working order gets fully filled. - The rules of the pending above and pending below follow the same rules as the Order List `OCO`. - OTOCOs add 3 orders to the unfilled order count, `EXCHANGE_MAX_NUM_ORDERS` filter and `MAX_NUM_ORDERS` filter. Weight(UID): 6 Official Binance Spot endpoint: POST /sapi/v1/margin/order/otoco. |
binance.binance_post_sapi_v1_margin_max_leverage | Read read | 3 | Adjust cross margin max leverage (USER_DATA) Adjust cross margin max leverage Weight(UID): 3000 Official Binance Spot endpoint: POST /sapi/v1/margin/max-leverage. |
binance.binance_get_sapi_v1_margin_leveragebracket | Read read | 0 | Query Liability Coin Leverage Bracket in Cross Margin Pro Mode (MARKET_DATA) Liability Coin Leverage Bracket in Cross Margin Pro Mode Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/margin/leverageBracket. |
binance.binance_get_sapi_v1_system_status | Read read | 0 | System Status (System) Fetch system status. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/system/status. |
binance.binance_get_sapi_v1_capital_config_getall | Read read | 2 | All Coins' Information (USER_DATA) Get information of coins (available for deposit and withdraw) for user. Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/capital/config/getall. |
binance.binance_get_sapi_v1_accountsnapshot | Read read | 6 | Daily Account Snapshot (USER_DATA) - The query time period must be less than 30 days - Support query within the last one month only - If startTimeand endTime not sent, return records of the last 7 days by default Weight(IP): 2400 Official Binance Spot endpoint: GET /sapi/v1/accountSnapshot. |
binance.binance_post_sapi_v1_account_disablefastwithdrawswitch | Read read | 2 | Disable Fast Withdraw Switch (USER_DATA) - This request will disable fastwithdraw switch under your account. - You need to enable "trade" option for the api key which requests this endpoint. Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/account/disableFastWithdrawSwitch. |
binance.binance_post_sapi_v1_account_enablefastwithdrawswitch | Read read | 2 | Enable Fast Withdraw Switch (USER_DATA) - This request will enable fastwithdraw switch under your account. You need to enable "trade" option for the api key which requests this endpoint. - When Fast Withdraw Switch is on, transferring funds to a Binance account will be done instantly. There is no on-chain transaction, no transaction ID and no withdrawal fee. Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/account/enableFastWithdrawSwitch. |
binance.binance_post_sapi_v1_capital_withdraw_apply | Read read | 11 | Withdraw (USER_DATA) Submit a withdraw request. - If `network` not send, return with default network of the coin. - You can get `network` and `isDefault` in `networkList` of a coin in the response of `Get /sapi/v1/capital/config/getall (HMAC SHA256)`. Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/capital/withdraw/apply. |
binance.binance_get_sapi_v1_capital_deposit_hisrec | Read read | 8 | Deposit History(supporting network) (USER_DATA) Fetch deposit history. - Please notice the default `startTime` and `endTime` to make sure that time interval is within 0-90 days. - If both `startTime` and `endTime` are sent, time between `startTime` and `endTime` must be less than 90 days. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/capital/deposit/hisrec. |
binance.binance_get_sapi_v1_capital_withdraw_history | Read read | 9 | Withdraw History (supporting network) (USER_DATA) Fetch withdraw history. This endpoint specifically uses per second UID rate limit, user's total second level IP rate limit is 180000/second. Response from the endpoint contains header key X-SAPI-USED-UID-WEIGHT-1S, which defines weight used by the current IP. - `network` may not be in the response for old withdraw. - Please notice the default `startTime` and `endTime` to make sure that time interval is within 0-90 days. - If both `startTime` and `endTime` are sent, time between `startTime` and `endTime` must be less than 90 days - If withdrawOrderId is sent, time between startTime and endTime must be less than 7 days. - If withdrawOrderId is sent, startTime and endTime are not sent, will return last 7 days records by default. Weight(UID): 18000 Request Limit: 10 requests per second Official Binance Spot endpoint: GET /sapi/v1/capital/withdraw/history. |
binance.binance_get_sapi_v1_capital_deposit_address | Read read | 4 | Deposit Address (supporting network) (USER_DATA) Fetch deposit address with network. - If network is not send, return with default network of the coin. - You can get network and isDefault in networkList in the response of Get /sapi/v1/capital/config/getall (HMAC SHA256). Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/capital/deposit/address. |
binance.binance_get_sapi_v1_account_status | Read read | 2 | Account Status (USER_DATA) Fetch account status detail. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/account/status. |
binance.binance_get_sapi_v1_account_apitradingstatus | Read read | 2 | Account API Trading Status (USER_DATA) Fetch account API trading status with details. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/account/apiTradingStatus. |
binance.binance_get_sapi_v1_asset_dribblet | Read read | 5 | DustLog(USER_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/asset/dribblet. |
binance.binance_post_sapi_v1_asset_dust_btc | Read read | 3 | Get Assets That Can Be Converted Into BNB (USER_DATA) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/asset/dust-btc. |
binance.binance_post_sapi_v1_asset_dust | Read read | 4 | Dust Transfer (USER_DATA) Convert dust assets to BNB. Weight(UID): 10 Official Binance Spot endpoint: POST /sapi/v1/asset/dust. |
binance.binance_get_sapi_v1_asset_assetdividend | Read read | 6 | Asset Dividend Record (USER_DATA) Query asset Dividend Record Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/asset/assetDividend. |
binance.binance_get_sapi_v1_asset_assetdetail | Read read | 3 | Asset Detail (USER_DATA) Fetch details of assets supported on Binance. - Please get network and other deposit or withdraw details from `GET /sapi/v1/capital/config/getall`. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/asset/assetDetail. |
binance.binance_get_sapi_v1_asset_tradefee | Read read | 3 | Trade Fee (USER_DATA) Fetch trade fee Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/asset/tradeFee. |
binance.binance_get_sapi_v1_asset_transfer | Read read | 9 | Query User Universal Transfer History (USER_DATA) - `fromSymbol` must be sent when type are ISOLATEDMARGIN_MARGIN and ISOLATEDMARGIN_ISOLATEDMARGIN - `toSymbol` must be sent when type are MARGIN_ISOLATEDMARGIN and ISOLATEDMARGIN_ISOLATEDMARGIN - Support query within the last 6 months only - If `startTime` and `endTime` not sent, return records of the last 7 days by default Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/asset/transfer. |
binance.binance_post_sapi_v1_asset_transfer | Read read | 7 | User Universal Transfer (USER_DATA) You need to enable `Permits Universal Transfer` option for the api key which requests this endpoint. - `fromSymbol` must be sent when type are ISOLATEDMARGIN_MARGIN and ISOLATEDMARGIN_ISOLATEDMARGIN - `toSymbol` must be sent when type are MARGIN_ISOLATEDMARGIN and ISOLATEDMARGIN_ISOLATEDMARGIN ENUM of transfer types: - MAIN_UMFUTURE Spot account transfer to USDⓈ-M Futures account - MAIN_CMFUTURE Spot account transfer to COIN-M Futures account - MAIN_MARGIN Spot account transfer to Margin(cross)account - UMFUTURE_MAIN USDⓈ-M Futures account transfer to Spot account - UMFUTURE_MARGIN USDⓈ-M Futures account transfer to Margin(cross)account - CMFUTURE_MAIN COIN-M Futures account transfer to Spot account - CMFUTURE_MARGIN COIN-M Futures account transfer to Margin(cross) account - MARGIN_MAIN Margin(cross)account transfer to Spot account - MARGIN_UMFUTURE Margin(cross)account transfer to USDⓈ-M Futures - MARGIN_CMFUTURE Margin(cross)account transfer to COIN-M Futures - ISOLATEDMARGIN_MARGIN Official Binance Spot endpoint: POST /sapi/v1/asset/transfer. |
binance.binance_post_sapi_v1_asset_get_funding_asset | Read read | 4 | Funding Wallet (USER_DATA) - Currently supports querying the following business assets:Binance Pay, Binance Card, Binance Gift Card, Stock Token Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/asset/get-funding-asset. |
binance.binance_post_sapi_v3_asset_getuserasset | Read read | 4 | User Asset (USER_DATA) Get user assets, just for positive data. Weight(IP): 5 Official Binance Spot endpoint: POST /sapi/v3/asset/getUserAsset. |
binance.binance_post_sapi_v1_asset_convert_transfer | Read read | 6 | Convert Transfer (USER_DATA) Convert transfer, convert between BUSD and stablecoins. If the clientId has been used before, will not do the convert transfer, the original transfer will be returned. Weight(UID): 5 Official Binance Spot endpoint: POST /sapi/v1/asset/convert-transfer. |
binance.binance_get_sapi_v1_asset_convert_transfer_querybypage | Read read | 9 | Query Convert Transfer (USER_DATA) Weight(UID): 5 Official Binance Spot endpoint: GET /sapi/v1/asset/convert-transfer/queryByPage. |
binance.binance_get_sapi_v1_asset_ledger_transfer_cloud_mining_querybypage | Read read | 9 | Get Cloud-Mining payment and refund history (USER_DATA) The query of Cloud-Mining payment and refund history Weight(UID): 600 Official Binance Spot endpoint: GET /sapi/v1/asset/ledger-transfer/cloud-mining/queryByPage. |
binance.binance_get_sapi_v1_account_apirestrictions | Read read | 2 | Get API Key Permission (USER_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/account/apiRestrictions. |
binance.binance_get_sapi_v1_capital_contract_convertible_coins | Read read | 0 | Query auto-converting stable coins (USER_DATA) Get a user's auto-conversion settings in deposit/withdrawal Weight(UID): 600' Official Binance Spot endpoint: GET /sapi/v1/capital/contract/convertible-coins. |
binance.binance_post_sapi_v1_capital_contract_convertible_coins | Read read | 2 | Switch on/off BUSD and stable coins conversion (USER_DATA) (USER_DATA) User can use it to turn on or turn off the BUSD auto-conversion from/to a specific stable coin. Weight(UID): 600' Official Binance Spot endpoint: POST /sapi/v1/capital/contract/convertible-coins. |
binance.binance_post_sapi_v1_sub_account_virtualsubaccount | Read read | 3 | Create a Virtual Sub-account(For Master Account) - This request will generate a virtual sub account under your master account. - You need to enable "trade" option for the api key which requests this endpoint. Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/sub-account/virtualSubAccount. |
binance.binance_get_sapi_v1_sub_account_list | Read read | 6 | Query Sub-account List (For Master Account) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/sub-account/list. |
binance.binance_get_sapi_v1_sub_account_sub_transfer_history | Read read | 8 | Sub-account Spot Asset Transfer History (For Master Account) - fromEmail and toEmail cannot be sent at the same time. - Return fromEmail equal master account email by default. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/sub-account/sub/transfer/history. |
binance.binance_get_sapi_v1_sub_account_futures_internaltransfer | Read read | 8 | Sub-account Futures Asset Transfer History (For Master Account) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/sub-account/futures/internalTransfer. |
binance.binance_post_sapi_v1_sub_account_futures_internaltransfer | Read read | 7 | Sub-account Futures Asset Transfer (For Master Account) - Master account can transfer max 2000 times a minute Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/sub-account/futures/internalTransfer. |
binance.binance_get_sapi_v3_sub_account_assets | Read read | 3 | Sub-account Assets (For Master Account) Fetch sub-account assets Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v3/sub-account/assets. |
binance.binance_get_sapi_v1_sub_account_spotsummary | Read read | 5 | Sub-account Spot Assets Summary (For Master Account) Get BTC valued asset summary of subaccounts. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/sub-account/spotSummary. |
binance.binance_get_sapi_v1_capital_deposit_subaddress | Read read | 5 | Sub-account Spot Assets Summary (For Master Account) Fetch sub-account deposit address Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/capital/deposit/subAddress. |
binance.binance_get_sapi_v1_capital_deposit_subhisrec | Read read | 9 | Sub-account Deposit History (For Master Account) Fetch sub-account deposit history Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/capital/deposit/subHisrec. |
binance.binance_post_sapi_v1_capital_deposit_credit_apply | Read read | 6 | One click arrival deposit apply (USER_DATA) Apply deposit credit for expired address (One click arrival) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/capital/deposit/credit-apply. |
binance.binance_get_sapi_v1_asset_wallet_balance | Read read | 2 | Query User Wallet Balance (USER_DATA) Query User Wallet Balance Weight(IP): 60 Official Binance Spot endpoint: GET /sapi/v1/asset/wallet/balance. |
binance.binance_get_sapi_v1_asset_custody_transfer_history | Read read | 9 | Query User Delegation History(For Master Account) (USER_DATA) Query User Delegation History Weight(IP): 60 Official Binance Spot endpoint: GET /sapi/v1/asset/custody/transfer-history. |
binance.binance_get_sapi_v1_capital_deposit_address_list | Read read | 4 | Fetch deposit address list with network (USER_DATA) Fetch deposit address list with network. Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/capital/deposit/address/list. |
binance.binance_get_sapi_v1_spot_delist_schedule | Read read | 2 | Get symbols delist schedule for spot (MARKET_DATA) Get symbols delist schedule for spot Weight(IP): 100 Official Binance Spot endpoint: GET /sapi/v1/spot/delist-schedule. |
binance.binance_get_sapi_v1_capital_withdraw_address_list | Read read | 0 | Fetch withdraw address list (USER_DATA) Fetch withdraw address list Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/capital/withdraw/address/list. |
binance.binance_get_sapi_v1_account_info | Read read | 2 | Account info (USER_DATA) Fetch account info detail. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/account/info. |
binance.binance_get_sapi_v1_sub_account_status | Read read | 3 | Sub-account's Status on Margin/Futures (For Master Account) - If no `email` sent, all sub-accounts' information will be returned. Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/sub-account/status. |
binance.binance_post_sapi_v1_sub_account_margin_enable | Read read | 3 | Enable Margin for Sub-account (For Master Account) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/sub-account/margin/enable. |
binance.binance_get_sapi_v1_sub_account_margin_account | Read read | 3 | Detail on Sub-account's Margin Account (For Master Account) Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/sub-account/margin/account. |
binance.binance_get_sapi_v1_sub_account_margin_accountsummary | Read read | 2 | Summary of Sub-account's Margin Account (For Master Account) Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/sub-account/margin/accountSummary. |
binance.binance_post_sapi_v1_sub_account_futures_enable | Read read | 3 | Enable Futures for Sub-account (For Master Account) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/sub-account/futures/enable. |
binance.binance_get_sapi_v1_sub_account_futures_account | Read read | 3 | Detail on Sub-account's Futures Account (For Master Account) Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/sub-account/futures/account. |
binance.binance_get_sapi_v1_sub_account_futures_accountsummary | Read read | 2 | Summary of Sub-account's Futures Account (For Master Account) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/sub-account/futures/accountSummary. |
binance.binance_get_sapi_v1_sub_account_futures_positionrisk | Read read | 3 | Futures Position-Risk of Sub-account (For Master Account) Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/sub-account/futures/positionRisk. |
binance.binance_post_sapi_v1_sub_account_futures_transfer | Read read | 6 | Transfer for Sub-account (For Master Account) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/sub-account/futures/transfer. |
binance.binance_post_sapi_v1_sub_account_margin_transfer | Read read | 6 | Margin Transfer for Sub-account (For Master Account) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/sub-account/margin/transfer. |
binance.binance_post_sapi_v1_sub_account_transfer_subtosub | Read read | 5 | Transfer to Sub-account of Same Master (For Sub-account) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/sub-account/transfer/subToSub. |
binance.binance_post_sapi_v1_sub_account_transfer_subtomaster | Read read | 4 | Transfer to Master (For Sub-account) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/sub-account/transfer/subToMaster. |
binance.binance_get_sapi_v1_sub_account_transfer_subuserhistory | Read read | 7 | Sub-account Transfer History (For Sub-account) - If `type` is not sent, the records of type 2: transfer out will be returned by default. - If `startTime` and `endTime` are not sent, the recent 30-day data will be returned. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/sub-account/transfer/subUserHistory. |
binance.binance_get_sapi_v1_sub_account_universaltransfer | Read read | 9 | Universal Transfer History (For Master Account) - `fromEmail` and `toEmail` cannot be sent at the same time. - Return `fromEmail` equal master account email by default. - The query time period must be less then 30 days. - If startTime and endTime not sent, return records of the last 30 days by default. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/sub-account/universalTransfer. |
binance.binance_post_sapi_v1_sub_account_universaltransfer | Read read | 10 | Universal Transfer (For Master Account) - You need to enable "internal transfer" option for the api key which requests this endpoint. - Transfer from master account by default if fromEmail is not sent. - Transfer to master account by default if toEmail is not sent. - Supported transfer scenarios: - Master account SPOT transfer to sub-account SPOT,USDT_FUTURE,COIN_FUTURE,MARGIN(Cross),ISOLATED_MARGIN - Sub-account SPOT,USDT_FUTURE,COIN_FUTURE,MARGIN(Cross),ISOLATED_MARGIN transfer to master account SPOT - Transfer between two sub-account SPOT accounts Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/sub-account/universalTransfer. |
binance.binance_get_sapi_v2_sub_account_futures_account | Read read | 4 | Detail on Sub-account's Futures Account V2 (For Master Account) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v2/sub-account/futures/account. |
binance.binance_get_sapi_v2_sub_account_futures_accountsummary | Read read | 5 | Summary of Sub-account's Futures Account V2 (For Master Account) Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v2/sub-account/futures/accountSummary. |
binance.binance_get_sapi_v2_sub_account_futures_positionrisk | Read read | 4 | Futures Position-Risk of Sub-account V2 (For Master Account) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v2/sub-account/futures/positionRisk. |
binance.binance_post_sapi_v1_sub_account_blvt_enable | Read read | 4 | Enable Leverage Token for Sub-account (For Master Account) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/sub-account/blvt/enable. |
binance.binance_post_sapi_v1_managed_subaccount_deposit | Read read | 5 | Deposit assets into the managed sub-account(For Investor Master Account) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/managed-subaccount/deposit. |
binance.binance_get_sapi_v1_managed_subaccount_asset | Read read | 3 | Managed sub-account asset details(For Investor Master Account) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/managed-subaccount/asset. |
binance.binance_post_sapi_v1_managed_subaccount_withdraw | Read read | 6 | Withdrawl assets from the managed sub-account(For Investor Master Account) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/managed-subaccount/withdraw. |
binance.binance_get_sapi_v1_managed_subaccount_accountsnapshot | Read read | 7 | Managed sub-account snapshot (For Investor Master Account) - The query time period must be less then 30 days - Support query within the last one month only - If `startTime` and `endTime` not sent, return records of the last 7 days by default Weight(IP): 2400 Official Binance Spot endpoint: GET /sapi/v1/managed-subaccount/accountSnapshot. |
binance.binance_get_sapi_v1_managed_subaccount_querytranslogforinvestor | Read read | 9 | Query Managed Sub Account Transfer Log (For Investor Master Account) Investor can use this api to query managed sub account transfer log. This endpoint is available for investor of Managed Sub-Account. A Managed Sub-Account is an account type for investors who value flexibility in asset allocation and account application, while delegating trades to a professional trading team. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/managed-subaccount/queryTransLogForInvestor. |
binance.binance_get_sapi_v1_managed_subaccount_querytranslogfortradeparent | Read read | 9 | Query Managed Sub Account Transfer Log (For Trading Team Master Account) Trading team can use this api to query managed sub account transfer log. This endpoint is available for trading team of Managed Sub-Account. A Managed Sub-Account is an account type for investors who value flexibility in asset allocation and account application, while delegating trades to a professional trading team Weight(IP): 60 Official Binance Spot endpoint: GET /sapi/v1/managed-subaccount/queryTransLogForTradeParent. |
binance.binance_get_sapi_v1_managed_subaccount_fetch_future_asset | Read read | 3 | Query Managed Sub-account Futures Asset Details (For Investor Master Account) Investor can use this api to query managed sub account futures asset details Official Binance Spot endpoint: GET /sapi/v1/managed-subaccount/fetch-future-asset. |
binance.binance_get_sapi_v1_managed_subaccount_marginasset | Read read | 3 | Query Managed Sub-account Margin Asset Details (For Investor Master Account) Investor can use this api to query managed sub account margin asset details Official Binance Spot endpoint: GET /sapi/v1/managed-subaccount/marginAsset. |
binance.binance_get_sapi_v1_managed_subaccount_info | Read read | 5 | Query Managed Sub-account List (For Investor) Get investor's managed sub-account list. Weight(UID): 60 Official Binance Spot endpoint: GET /sapi/v1/managed-subaccount/info. |
binance.binance_get_sapi_v1_managed_subaccount_deposit_address | Read read | 5 | Get Managed Sub-account Deposit Address (For Investor Master Account) Get investor's managed sub-account deposit address Weight(UID): 1 Official Binance Spot endpoint: GET /sapi/v1/managed-subaccount/deposit/address. |
binance.binance_get_sapi_v1_managed_subaccount_query_trans_log | Read read | 8 | Query Managed Sub Account Transfer Log (For Trading Team Sub Account)(USER_DATA) Query Managed Sub Account Transfer Log (For Trading Team Sub Account) Weight(UID): 60 Official Binance Spot endpoint: GET /sapi/v1/managed-subaccount/query-trans-log. |
binance.binance_get_sapi_v1_sub_account_subaccountapi_iprestriction | Read read | 4 | Get IP Restriction for a Sub-account API Key (For Master Account) Weight(UID): 3000 Official Binance Spot endpoint: GET /sapi/v1/sub-account/subAccountApi/ipRestriction. |
binance.binance_delete_sapi_v1_sub_account_subaccountapi_iprestriction_iplist | Write write | 6 | Delete IP List for a Sub-account API Key (For Master Account) Weight(UID): 3000 Official Binance Spot endpoint: DELETE /sapi/v1/sub-account/subAccountApi/ipRestriction/ipList. |
binance.binance_get_sapi_v1_sub_account_transaction_statistics | Read read | 3 | Query Sub-account Transaction Statistics (For Master Account) Query Sub-account Transaction statistics (For Master Account). Weight(UID): 60 Official Binance Spot endpoint: GET /sapi/v1/sub-account/transaction-statistics. |
binance.binance_post_sapi_v1_sub_account_eoptions_enable | Read read | 3 | Enable Options for Sub-account (For Master Account)(USER_DATA) Enable Options for Sub-account (For Master Account). Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/sub-account/eoptions/enable. |
binance.binance_post_sapi_v2_sub_account_subaccountapi_iprestriction | Read read | 6 | Update IP Restriction for Sub-Account API key (For Master Account) Update IP Restriction for Sub-Account API key Weight(UID): 3000 Official Binance Spot endpoint: POST /sapi/v2/sub-account/subAccountApi/ipRestriction. |
binance.binance_get_sapi_v4_sub_account_assets | Read read | 3 | Query Sub-account Assets (For Master Account) Fetch sub-account assets Weight(UID): 60 Official Binance Spot endpoint: GET /sapi/v4/sub-account/assets. |
binance.binance_post_api_v3_userdatastream | Read read | 0 | Create a ListenKey (USER_STREAM) Start a new user data stream. The stream will close after 60 minutes unless a keepalive is sent. If the account has an active `listenKey`, that `listenKey` will be returned and its validity will be extended for 60 minutes. Weight: 2 Official Binance Spot endpoint: POST /api/v3/userDataStream. |
binance.binance_put_api_v3_userdatastream | Read read | 1 | Ping/Keep-alive a ListenKey (USER_STREAM) Keepalive a user data stream to prevent a time out. User data streams will close after 60 minutes. It's recommended to send a ping about every 30 minutes. Weight: 2 Official Binance Spot endpoint: PUT /api/v3/userDataStream. |
binance.binance_delete_api_v3_userdatastream | Write write | 1 | Close a ListenKey (USER_STREAM) Close out a user data stream. Weight: 2 Official Binance Spot endpoint: DELETE /api/v3/userDataStream. |
binance.binance_post_sapi_v1_userdatastream | Read read | 0 | Create a ListenKey (USER_STREAM) Start a new user data stream. The stream will close after 60 minutes unless a keepalive is sent. If the account has an active `listenKey`, that `listenKey` will be returned and its validity will be extended for 60 minutes. Weight: 1 Official Binance Spot endpoint: POST /sapi/v1/userDataStream. |
binance.binance_put_sapi_v1_userdatastream | Read read | 1 | Ping/Keep-alive a ListenKey (USER_STREAM) Keepalive a user data stream to prevent a time out. User data streams will close after 60 minutes. It's recommended to send a ping about every 30 minutes. Weight: 1 Official Binance Spot endpoint: PUT /sapi/v1/userDataStream. |
binance.binance_delete_sapi_v1_userdatastream | Write write | 1 | Close a ListenKey (USER_STREAM) Close out a user data stream. Weight: 1 Official Binance Spot endpoint: DELETE /sapi/v1/userDataStream. |
binance.binance_post_sapi_v1_userdatastream_isolated | Read read | 0 | Generate a Listen Key (USER_STREAM) Start a new user data stream. The stream will close after 60 minutes unless a keepalive is sent. If the account has an active `listenKey`, that `listenKey` will be returned and its validity will be extended for 60 minutes. Weight: 1 Official Binance Spot endpoint: POST /sapi/v1/userDataStream/isolated. |
binance.binance_put_sapi_v1_userdatastream_isolated | Read read | 1 | Ping/Keep-alive a Listen Key (USER_STREAM) Keepalive a user data stream to prevent a time out. User data streams will close after 60 minutes. It's recommended to send a ping about every 30 minutes. Weight: 1 Official Binance Spot endpoint: PUT /sapi/v1/userDataStream/isolated. |
binance.binance_delete_sapi_v1_userdatastream_isolated | Write write | 1 | Close a ListenKey (USER_STREAM) Close out a user data stream. Weight: 1 Official Binance Spot endpoint: DELETE /sapi/v1/userDataStream/isolated. |
binance.binance_get_sapi_v1_fiat_orders | Read read | 7 | Fiat Deposit/Withdraw History (USER_DATA) - If beginTime and endTime are not sent, the recent 30-day data will be returned. Weight(UID): 90000 Official Binance Spot endpoint: GET /sapi/v1/fiat/orders. |
binance.binance_get_sapi_v1_fiat_payments | Read read | 7 | Fiat Payments History (USER_DATA) - If beginTime and endTime are not sent, the recent 30-day data will be returned. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/fiat/payments. |
binance.binance_get_sapi_v1_lending_project_list | Read read | 9 | Get Fixed/Activity Project List(USER_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/project/list. |
binance.binance_post_sapi_v1_lending_customizedfixed_purchase | Read read | 4 | Purchase Fixed/Activity Project (USER_DATA) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/lending/customizedFixed/purchase. |
binance.binance_get_sapi_v1_lending_project_position_list | Read read | 5 | Get Fixed/Activity Project Position (USER_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/project/position/list. |
binance.binance_post_sapi_v1_lending_positionchanged | Read read | 5 | Change Fixed/Activity Position to Daily Position (USER_DATA) - PositionId is mandatory parameter for fixed position. Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/lending/positionChanged. |
binance.binance_get_sapi_v1_mining_pub_algolist | Read read | 0 | Acquiring Algorithm (MARKET_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/mining/pub/algoList. |
binance.binance_get_sapi_v1_mining_pub_coinlist | Read read | 0 | Acquiring CoinName (MARKET_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/mining/pub/coinList. |
binance.binance_get_sapi_v1_mining_worker_detail | Read read | 5 | Request for Detail Miner List (USER_DATA) Weight(IP): 5 Official Binance Spot endpoint: GET /sapi/v1/mining/worker/detail. |
binance.binance_get_sapi_v1_mining_worker_list | Read read | 8 | Request for Miner List (USER_DATA) Weight(IP): 5 Official Binance Spot endpoint: GET /sapi/v1/mining/worker/list. |
binance.binance_get_sapi_v1_mining_payment_list | Read read | 9 | Earnings List (USER_DATA) Weight(IP): 5 Official Binance Spot endpoint: GET /sapi/v1/mining/payment/list. |
binance.binance_get_sapi_v1_mining_payment_other | Read read | 9 | Extra Bonus List (USER_DATA) Weight(IP): 5 Official Binance Spot endpoint: GET /sapi/v1/mining/payment/other. |
binance.binance_get_sapi_v1_mining_hash_transfer_config_details_list | Read read | 4 | Hashrate Resale List (USER_DATA) Weight(IP): 5 Official Binance Spot endpoint: GET /sapi/v1/mining/hash-transfer/config/details/list. |
binance.binance_get_sapi_v1_mining_hash_transfer_profit_details | Read read | 6 | Hashrate Resale Details (USER_DATA) Weight(IP): 5 Official Binance Spot endpoint: GET /sapi/v1/mining/hash-transfer/profit/details. |
binance.binance_post_sapi_v1_mining_hash_transfer_config | Read read | 8 | Hashrate Resale Request (USER_DATA) Weight(IP): 5 Official Binance Spot endpoint: POST /sapi/v1/mining/hash-transfer/config. |
binance.binance_post_sapi_v1_mining_hash_transfer_config_cancel | Read read | 4 | Cancel Hashrate Resale configuration (USER_DATA) Weight(IP): 5 Official Binance Spot endpoint: POST /sapi/v1/mining/hash-transfer/config/cancel. |
binance.binance_get_sapi_v1_mining_statistics_user_status | Read read | 4 | Statistic List (USER_DATA) Weight(IP): 5 Official Binance Spot endpoint: GET /sapi/v1/mining/statistics/user/status. |
binance.binance_get_sapi_v1_mining_statistics_user_list | Read read | 4 | Account List (USER_DATA) Weight(IP): 5 Official Binance Spot endpoint: GET /sapi/v1/mining/statistics/user/list. |
binance.binance_get_sapi_v1_mining_payment_uid | Read read | 7 | Mining Account Earning (USER_DATA) Weight(IP): 5 Official Binance Spot endpoint: GET /sapi/v1/mining/payment/uid. |
binance.binance_post_sapi_v1_futures_transfer | Read read | 5 | New Future Account Transfer (USER_DATA) Execute transfer between spot account and futures account. Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/futures/transfer. |
binance.binance_get_sapi_v1_futures_transfer | Read read | 7 | Get Future Account Transaction History List (USER_DATA) Weight(IP): 10 Official Binance Spot endpoint: GET /sapi/v1/futures/transfer. |
binance.binance_get_sapi_v1_futures_histdatalink | Read read | 6 | Get Future TickLevel Orderbook Historical Data Download Link (USER_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/futures/histDataLink. |
binance.binance_post_sapi_v1_algo_futures_newordervp | Read read | 10 | Volume Participation(VP) New Order (TRADE) Send in a VP new order. Only support on USDⓈ-M Contracts. - You need to enable `Futures Trading Permission` for the api key which requests this endpoint. - Base URL: https://api.binance.com - Total Algo open orders max allowed: 10 orders. - Leverage of symbols and position mode will be the same as your futures account settings. You can set up through the trading page or fapi. - Receiving "success": true does not mean that your order will be executed. Please use the query order endpoints(GET sapi/v1/algo/futures/openOrders or GET sapi/v1/algo/futures/historicalOrders) to check the order status. For example: Your futures balance is insufficient, or open position with reduce only or position side is inconsistent with your own setting. In these cases you will receive "success": true, but the order status will be expired after we check it. Weight(UID): 3000 Official Binance Spot endpoint: POST /sapi/v1/algo/futures/newOrderVp. |
binance.binance_post_sapi_v1_algo_futures_newordertwap | Read read | 10 | Time-Weighted Average Price(Twap) New Order (TRADE) Send in a Twap new order. Only support on USDⓈ-M Contracts. You need to enable Futures Trading Permission for the api key which requests this endpoint. Base URL: https://api.binance.com - Total Algo open orders max allowed: 10 orders. - Leverage of symbols and position mode will be the same as your futures account settings. You can set up through the trading page or fapi. - Receiving "success": true does not mean that your order will be executed. Please use the query order endpoints(GET sapi/v1/algo/futures/openOrders or GET sapi/v1/algo/futures/historicalOrders) to check the order status. For example: Your futures balance is insufficient, or open position with reduce only or position side is inconsistent with your own setting. In these cases you will receive "success": true, but the order status will be expired after we check it. - quantity * 60 / duration should be larger than minQty - duration cannot be less than 5 mins or more than 24 hours. - For delivery contracts, TWAP end time Official Binance Spot endpoint: POST /sapi/v1/algo/futures/newOrderTwap. |
binance.binance_delete_sapi_v1_algo_futures_order | Write write | 3 | Cancel Algo Order(TRADE) Cancel an active order. - You need to enable Futures Trading Permission for the api key which requests this endpoint. - Base URL: https://api.binance.com Weight(IP): 1 Official Binance Spot endpoint: DELETE /sapi/v1/algo/futures/order. |
binance.binance_get_sapi_v1_algo_futures_openorders | Read read | 2 | Query Current Algo Open Orders (USER_DATA) - You need to enable Futures Trading Permission for the api key which requests this endpoint. - Base URL: https://api.binance.com Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/algo/futures/openOrders. |
binance.binance_get_sapi_v1_algo_futures_historicalorders | Read read | 8 | Query Historical Algo Orders (USER_DATA) - You need to enable Futures Trading Permission for the api key which requests this endpoint. - Base URL: https://api.binance.com Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/algo/futures/historicalOrders. |
binance.binance_get_sapi_v1_algo_futures_suborders | Read read | 5 | Query Sub Orders (USER_DATA) - You need to enable Futures Trading Permission for the api key which requests this endpoint. - Base URL: https://api.binance.com Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/algo/futures/subOrders. |
binance.binance_post_sapi_v1_algo_spot_newordertwap | Read read | 8 | Time-Weighted Average Price (Twap) New Order Place a new spot TWAP order with Algo service. Weight(UID): 3000 Official Binance Spot endpoint: POST /sapi/v1/algo/spot/newOrderTwap. |
binance.binance_delete_sapi_v1_algo_spot_order | Write write | 3 | Cancel Algo Order Cancel an open TWAP order Weight(IP): 1 Official Binance Spot endpoint: DELETE /sapi/v1/algo/spot/order. |
binance.binance_get_sapi_v1_algo_spot_openorders | Read read | 2 | Query Current Algo Open Orders Get all open SPOT TWAP orders Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/algo/spot/openOrders. |
binance.binance_get_sapi_v1_algo_spot_historicalorders | Read read | 8 | Query Historical Algo Orders Get all historical SPOT TWAP orders Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/algo/spot/historicalOrders. |
binance.binance_get_sapi_v1_algo_spot_suborders | Read read | 5 | Query Sub Orders Get respective sub orders for a specified algoId Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/algo/spot/subOrders. |
binance.binance_get_sapi_v1_portfolio_account | Read read | 2 | Portfolio Margin Account (USER_DATA) Get the account info 'Weight(IP): 1' Official Binance Spot endpoint: GET /sapi/v1/portfolio/account. |
binance.binance_get_sapi_v1_portfolio_collateralrate | Read read | 0 | Portfolio Margin Collateral Rate (MARKET_DATA) Portfolio Margin Collateral Rate. Weight(IP): 50 Official Binance Spot endpoint: GET /sapi/v1/portfolio/collateralRate. |
binance.binance_get_sapi_v2_portfolio_collateralrate | Read read | 2 | Portfolio Margin Pro Tiered Collateral Rate(USER_DATA) Portfolio Margin PRO Tiered Collateral Rate Weight(IP): 50 Official Binance Spot endpoint: GET /sapi/v2/portfolio/collateralRate. |
binance.binance_get_sapi_v1_portfolio_pmloan | Read read | 2 | Portfolio Margin Bankruptcy Loan Amount (USER_DATA) Query Portfolio Margin Bankruptcy Loan Amount. Weight(UID): 500 Official Binance Spot endpoint: GET /sapi/v1/portfolio/pmLoan. |
binance.binance_post_sapi_v1_portfolio_repay | Read read | 3 | Portfolio Margin Bankruptcy Loan Repay (USER_DATA) Repay Portfolio Margin Bankruptcy Loan. Weight(UID): 3000 Official Binance Spot endpoint: POST /sapi/v1/portfolio/repay. |
binance.binance_get_sapi_v1_portfolio_interest_history | Read read | 6 | Query Classic Portfolio Margin Negative Balance Interest History (USER_DATA) Query interest history of negative balance for portfolio margin. Weight(IP): 50 Official Binance Spot endpoint: GET /sapi/v1/portfolio/interest-history. |
binance.binance_get_sapi_v1_portfolio_asset_index_price | Read read | 1 | Query Portfolio Margin Asset Index Price (MARKET_DATA) Query Portfolio Margin Asset Index Price Weight(IP): - 1 if send asset - 50 if not send asset Official Binance Spot endpoint: GET /sapi/v1/portfolio/asset-index-price. |
binance.binance_post_sapi_v1_portfolio_auto_collection | Read read | 2 | Fund Auto-collection (USER_DATA) Transfers all assets from Futures Account to Margin account Weight(IP): 1500 Official Binance Spot endpoint: POST /sapi/v1/portfolio/auto-collection. |
binance.binance_post_sapi_v1_portfolio_bnb_transfer | Read read | 4 | BNB Transfer (USER_DATA) BNB transfer can be between Margin Account and USDM Account Weight(IP): 1500 Official Binance Spot endpoint: POST /sapi/v1/portfolio/bnb-transfer. |
binance.binance_post_sapi_v1_portfolio_repay_futures_switch | Read read | 3 | Change Auto-repay-futures Status (USER_DATA) Change Auto-repay-futures Status Weight(IP): 1500 Official Binance Spot endpoint: POST /sapi/v1/portfolio/repay-futures-switch. |
binance.binance_get_sapi_v1_portfolio_repay_futures_switch | Read read | 2 | Get Auto-repay-futures Status (USER_DATA) Query Auto-repay-futures Status Weight(IP): 30 Official Binance Spot endpoint: GET /sapi/v1/portfolio/repay-futures-switch. |
binance.binance_post_sapi_v1_portfolio_repay_futures_negative_balance | Read read | 2 | Repay futures Negative Balance (USER_DATA) Repay futures Negative Balance Weight(IP): 1500 Official Binance Spot endpoint: POST /sapi/v1/portfolio/repay-futures-negative-balance. |
binance.binance_get_sapi_v1_portfolio_margin_asset_leverage | Read read | 0 | Get Portfolio Margin Asset Leverage (USER_DATA) Weight(IP): 50 Official Binance Spot endpoint: GET /sapi/v1/portfolio/margin-asset-leverage. |
binance.binance_post_sapi_v1_portfolio_asset_collection | Read read | 3 | Fund Collection by Asset (USER_DATA) Transfers specific asset from Futures Account to Margin account Weight(IP): 60 Official Binance Spot endpoint: POST /sapi/v1/portfolio/asset-collection. |
binance.binance_get_sapi_v1_blvt_tokeninfo | Read read | 1 | BLVT Info (MARKET_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/blvt/tokenInfo. |
binance.binance_post_sapi_v1_blvt_subscribe | Read read | 4 | Subscribe BLVT (USER_DATA) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/blvt/subscribe. |
binance.binance_get_sapi_v1_blvt_subscribe_record | Read read | 7 | Query Subscription Record (USER_DATA) - Only the data of the latest 90 days is available Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/blvt/subscribe/record. |
binance.binance_post_sapi_v1_blvt_redeem | Read read | 4 | Redeem BLVT (USER_DATA) Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/blvt/redeem. |
binance.binance_get_sapi_v1_blvt_redeem_record | Read read | 7 | Redemption Record (USER_DATA) - Only the data of the latest 90 days is available Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/blvt/redeem/record. |
binance.binance_get_sapi_v1_blvt_userlimit | Read read | 3 | BLVT User Limit Info (USER_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/blvt/userLimit. |
binance.binance_get_sapi_v1_c2c_ordermatch_listuserorderhistory | Read read | 7 | Get C2C Trade History (USER_DATA) - If startTimestamp and endTimestamp are not sent, the recent 30-day data will be returned. - The max interval between startTimestamp and endTimestamp is 30 days. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/c2c/orderMatch/listUserOrderHistory. |
binance.binance_get_sapi_v1_loan_vip_ongoing_orders | Read read | 8 | Get VIP Loan Ongoing Orders (USER_DATA) VIP loan is available for VIP users only. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v1/loan/vip/ongoing/orders. |
binance.binance_post_sapi_v1_loan_vip_repay | Read read | 4 | VIP Loan Repay (TRADE) VIP loan is available for VIP users only. Weight(UID): 6000 Official Binance Spot endpoint: POST /sapi/v1/loan/vip/repay. |
binance.binance_get_sapi_v1_loan_vip_repay_history | Read read | 8 | Get VIP Loan Repayment History (USER_DATA) VIP loan is available for VIP users only. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v1/loan/vip/repay/history. |
binance.binance_get_sapi_v1_loan_vip_collateral_account | Read read | 4 | Check Locked Value of VIP Collateral Account (USER_DATA) VIP loan is available for VIP users only. Weight(IP): 6000 Official Binance Spot endpoint: GET /sapi/v1/loan/vip/collateral/account. |
binance.binance_post_sapi_v1_loan_vip_borrow | Read read | 9 | VIP Loan Borrow VIP loan is available for VIP users only. Weight(UID): 6000 Official Binance Spot endpoint: POST /sapi/v1/loan/vip/borrow. |
binance.binance_get_sapi_v1_loan_vip_loanable_data | Read read | 4 | Get Loanable Assets Data Get interest rate and borrow limit of loanable assets. The borrow limit is shown in USD value. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v1/loan/vip/loanable/data. |
binance.binance_get_sapi_v1_loan_vip_collateral_data | Read read | 3 | Get Collateral Asset Data (USER_DATA) Get collateral asset data. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v1/loan/vip/collateral/data. |
binance.binance_get_sapi_v1_loan_vip_request_data | Read read | 4 | Query Application Status (USER_DATA) Get Application Status Weight(UID): 400 Official Binance Spot endpoint: GET /sapi/v1/loan/vip/request/data. |
binance.binance_get_sapi_v1_loan_vip_request_interestrate | Read read | 3 | Get Borrow Interest Rate (USER_DATA) Get borrow interest rate. Weight(UID): 400 Official Binance Spot endpoint: GET /sapi/v1/loan/vip/request/interestRate. |
binance.binance_post_sapi_v1_loan_vip_renew | Read read | 4 | VIP Loan Renew VIP loan is available for VIP users only. Weight(UID): 6000 Official Binance Spot endpoint: POST /sapi/v1/loan/vip/renew. |
binance.binance_get_sapi_v1_loan_income | Read read | 7 | Get Crypto Loans Income History (USER_DATA) - If startTime and endTime are not sent, the recent 7-day data will be returned. - The max interval between startTime and endTime is 30 days. Weight(UID): 6000 Official Binance Spot endpoint: GET /sapi/v1/loan/income. |
binance.binance_post_sapi_v1_loan_borrow | Read read | 7 | Crypto Loan Borrow (TRADE) Weight(UID): 6000 Official Binance Spot endpoint: POST /sapi/v1/loan/borrow. |
binance.binance_get_sapi_v1_loan_borrow_history | Read read | 9 | Get Crypto Loans Borrow History (USER_DATA) - If startTime and endTime are not sent, the recent 90-day data will be returned. - The max interval between startTime and endTime is 180 days. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v1/loan/borrow/history. |
binance.binance_get_sapi_v1_loan_ongoing_orders | Read read | 7 | Get Loan Ongoing Orders (USER_DATA) Weight(IP): 300 Official Binance Spot endpoint: GET /sapi/v1/loan/ongoing/orders. |
binance.binance_post_sapi_v1_loan_repay | Read read | 6 | Crypto Loan Repay (TRADE) Weight(UID): 6000 Official Binance Spot endpoint: POST /sapi/v1/loan/repay. |
binance.binance_get_sapi_v1_loan_repay_history | Read read | 9 | Get Loan Repayment History (USER_DATA) If startTime and endTime are not sent, the recent 90-day data will be returned. The max interval between startTime and endTime is 180 days. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v1/loan/repay/history. |
binance.binance_post_sapi_v1_loan_adjust_ltv | Read read | 5 | Crypto Loan Adjust LTV (TRADE) Weight(UID): 6000 Official Binance Spot endpoint: POST /sapi/v1/loan/adjust/ltv. |
binance.binance_get_sapi_v1_loan_ltv_adjustment_history | Read read | 9 | Get Loan LTV Adjustment History (USER_DATA) If startTime and endTime are not sent, the recent 90-day data will be returned. The max interval between startTime and endTime is 180 days. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v1/loan/ltv/adjustment/history. |
binance.binance_get_sapi_v1_loan_loanable_data | Read read | 4 | Get Loanable Assets Data (USER_DATA) Get interest rate and borrow limit of loanable assets. The borrow limit is shown in USD value. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v1/loan/loanable/data. |
binance.binance_get_sapi_v1_loan_collateral_data | Read read | 4 | Get Collateral Assets Data (USER_DATA) Get LTV information and collateral limit of collateral assets. The collateral limit is shown in USD value. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v1/loan/collateral/data. |
binance.binance_get_sapi_v1_loan_repay_collateral_rate | Read read | 5 | Check Collateral Repay Rate (USER_DATA) Get the the rate of collateral coin / loan coin when using collateral repay, the rate will be valid within 8 second. Weight(IP): 6000 Official Binance Spot endpoint: GET /sapi/v1/loan/repay/collateral/rate. |
binance.binance_post_sapi_v1_loan_customize_margin_call | Read read | 5 | Crypto Loan Customize Margin Call (TRADE) Customize margin call for ongoing orders only. Weight(UID): 6000 Official Binance Spot endpoint: POST /sapi/v1/loan/customize/margin_call. |
binance.binance_post_sapi_v2_loan_flexible_borrow | Read read | 6 | Borrow - Flexible Loan Borrow (TRADE) - Only available for master account Weight(UID): 6000 Official Binance Spot endpoint: POST /sapi/v2/loan/flexible/borrow. |
binance.binance_get_sapi_v2_loan_flexible_ongoing_orders | Read read | 6 | Borrow - Get Flexible Loan Ongoing Orders (USER_DATA) Weight(IP): 300 Official Binance Spot endpoint: GET /sapi/v2/loan/flexible/ongoing/orders. |
binance.binance_get_sapi_v2_loan_flexible_borrow_history | Read read | 8 | Borrow - Get Flexible Loan Borrow History (USER_DATA) - If startTime and endTime are not sent, the recent 90-day data will be returned. - The max interval between startTime and endTime is 180 days. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v2/loan/flexible/borrow/history. |
binance.binance_post_sapi_v2_loan_flexible_repay | Read read | 7 | Repay - Flexible Loan Repay (TRADE) - repayAmount is mandatory even fullRepayment = FALSE Weight(IP): 6000 Official Binance Spot endpoint: POST /sapi/v2/loan/flexible/repay. |
binance.binance_get_sapi_v2_loan_flexible_repay_history | Read read | 8 | Repay - Get Flexible Loan Repayment History (USER_DATA) - If startTime and endTime are not sent, the recent 90-day data will be returned. - The max interval between startTime and endTime is 180 days. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v2/loan/flexible/repay/history. |
binance.binance_post_sapi_v2_loan_flexible_adjust_ltv | Read read | 6 | Adjust LTV - Flexible Loan Adjust LTV (TRADE) - API Key needs Spot & Margin Trading permission for this endpoint Weight(UID): 6000 Official Binance Spot endpoint: POST /sapi/v2/loan/flexible/adjust/ltv. |
binance.binance_get_sapi_v2_loan_flexible_ltv_adjustment_history | Read read | 8 | Adjust LTV - Get Flexible Loan LTV Adjustment History (USER_DATA) - If startTime and endTime are not sent, the recent 90-day data will be returned. - The max interval between startTime and endTime is 180 days. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v2/loan/flexible/ltv/adjustment/history. |
binance.binance_get_sapi_v2_loan_flexible_loanable_data | Read read | 3 | Get Flexible Loan Assets Data (USER_DATA) Get interest rate and borrow limit of flexible loanable assets. The borrow limit is shown in USD value. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v2/loan/flexible/loanable/data. |
binance.binance_get_sapi_v2_loan_flexible_collateral_data | Read read | 3 | Get Flexible Loan Collateral Assets Data (USER_DATA) Get LTV information and collateral limit of flexible loan's collateral assets. The collateral limit is shown in USD value. Weight(IP): 400 Official Binance Spot endpoint: GET /sapi/v2/loan/flexible/collateral/data. |
binance.binance_get_sapi_v1_pay_transactions | Read read | 5 | Get Pay Trade History (USER_DATA) - If startTime and endTime are not sent, the recent 90 days' data will be returned. - The max interval between startTime and endTime is 90 days. - Support for querying orders within the last 18 months. Weight(UID): 3000 Official Binance Spot endpoint: GET /sapi/v1/pay/transactions. |
binance.binance_get_sapi_v1_convert_exchangeinfo | Read read | 2 | List All Convert Pairs Query for all convertible token pairs and the tokens’ respective upper/lower limits Weight(IP): 3000 Official Binance Spot endpoint: GET /sapi/v1/convert/exchangeInfo. |
binance.binance_get_sapi_v1_convert_assetinfo | Read read | 2 | Query order quantity precision per asset (USER_DATA) Query for supported asset precision information Weight(IP): 100 Official Binance Spot endpoint: GET /sapi/v1/convert/assetInfo. |
binance.binance_post_sapi_v1_convert_getquote | Read read | 8 | Send quote request (USER_DATA) Request a quote for the requested token pairs Weight(UID): 200 Official Binance Spot endpoint: POST /sapi/v1/convert/getQuote. |
binance.binance_post_sapi_v1_convert_acceptquote | Read read | 3 | Accept Quote (TRADE) Accept the offered quote by quote ID. Weight(UID): 500 Official Binance Spot endpoint: POST /sapi/v1/convert/acceptQuote. |
binance.binance_get_sapi_v1_convert_orderstatus | Read read | 4 | Order status (USER_DATA) Query order status by order ID. Weight(UID): 100 Official Binance Spot endpoint: GET /sapi/v1/convert/orderStatus. |
binance.binance_post_sapi_v1_convert_limit_placeorder | Read read | 10 | Place limit order (USER_DATA) Enable users to place a limit order - baseAsset or quoteAsset can be determined via exchangeInfo endpoint. - Limit price is defined from baseAsset to quoteAsset. - Either baseAmount or quoteAmount is used. Weight(UID): 500 Official Binance Spot endpoint: POST /sapi/v1/convert/limit/placeOrder. |
binance.binance_post_sapi_v1_convert_limit_cancelorder | Read read | 3 | Cancel limit order (USER_DATA) Enable users to cancel a limit order Weight(UID): 200 Official Binance Spot endpoint: POST /sapi/v1/convert/limit/cancelOrder. |
binance.binance_get_sapi_v1_convert_limit_queryopenorders | Read read | 2 | Query limit open orders (USER_DATA) Enable users to query for all existing limit orders Weight(UID): 3000 Official Binance Spot endpoint: GET /sapi/v1/convert/limit/queryOpenOrders. |
binance.binance_get_sapi_v1_convert_tradeflow | Read read | 5 | Get Convert Trade History (USER_DATA) - The max interval between startTime and endTime is 30 days. Weight(UID): 3000 Official Binance Spot endpoint: GET /sapi/v1/convert/tradeFlow. |
binance.binance_get_sapi_v1_rebate_taxquery | Read read | 5 | Get Spot Rebate History Records (USER_DATA) - The max interval between startTime and endTime is 90 days. - If startTime and endTime are not sent, the recent 7 days' data will be returned. - The earliest startTime is supported on June 10, 2020 Weight(UID): 3000 Official Binance Spot endpoint: GET /sapi/v1/rebate/taxQuery. |
binance.binance_get_sapi_v1_nft_history_transactions | Read read | 7 | Get NFT Transaction History (USER_DATA) - The max interval between startTime and endTime is 90 days. - If startTime and endTime are not sent, the recent 7 days' data will be returned. Weight(UID): 3000 Official Binance Spot endpoint: GET /sapi/v1/nft/history/transactions. |
binance.binance_get_sapi_v1_nft_history_deposit | Read read | 6 | Get NFT Deposit History(USER_DATA) - The max interval between startTime and endTime is 90 days. - If startTime and endTime are not sent, the recent 7 days' data will be returned. Weight(UID): 3000 Official Binance Spot endpoint: GET /sapi/v1/nft/history/deposit. |
binance.binance_get_sapi_v1_nft_history_withdraw | Read read | 6 | Get NFT Withdraw History (USER_DATA) - The max interval between startTime and endTime is 90 days. - If startTime and endTime are not sent, the recent 7 days' data will be returned. Weight(UID): 3000 Official Binance Spot endpoint: GET /sapi/v1/nft/history/withdraw. |
binance.binance_get_sapi_v1_nft_user_getasset | Read read | 4 | Get NFT Asset (USER_DATA) Weight(UID): 3000 Official Binance Spot endpoint: GET /sapi/v1/nft/user/getAsset. |
binance.binance_post_sapi_v1_giftcard_createcode | Read read | 4 | Create a Binance Code (USER_DATA) This API is for creating a Binance Code. To get started with, please make sure: - You have a Binance account - You have passed kyc - You have a sufficient balance in your Binance funding wallet - You need Enable Withdrawals for the API Key which requests this endpoint. Daily creation volume: 2 BTC / 24H Daily creation times: 200 Codes / 24H Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/giftcard/createCode. |
binance.binance_post_sapi_v1_giftcard_redeemcode | Read read | 4 | Redeem a Binance Code (USER_DATA) This API is for redeeming the Binance Code. Once redeemed, the coins will be deposited in your funding wallet. Please note that if you enter the wrong code 5 times within 24 hours, you will no longer be able to redeem any Binance Code that day. Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/giftcard/redeemCode. |
binance.binance_get_sapi_v1_giftcard_verify | Read read | 3 | Verify a Binance Code (USER_DATA) This API is for verifying whether the Binance Code is valid or not by entering Binance Code or reference number. Please note that if you enter the wrong binance code 5 times within an hour, you will no longer be able to verify any binance code for that hour. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/giftcard/verify. |
binance.binance_get_sapi_v1_giftcard_cryptography_rsa_public_key | Read read | 2 | Fetch RSA Public Key (USER_DATA) This API is for fetching the RSA Public Key. This RSA Public key will be used to encrypt the card code. Please note that the RSA Public key fetched is valid only for the current day. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/giftcard/cryptography/rsa-public-key. |
binance.binance_post_sapi_v1_giftcard_buycode | Read read | 5 | Buy a Binance Code (TRADE) This API is for buying a fixed-value Binance Code, which means your Binance Code will be redeemable to a token that is different to the token that you are paying in. If the token you’re paying and the redeemable token are the same, please use the Create Binance Code endpoint. You can use supported crypto currency or fiat token as baseToken to buy Binance Code that is redeemable to your chosen faceToken. Once successfully purchased, the amount of baseToken would be deducted from your funding wallet. To get started with, please make sure: - You have a Binance account - You have passed kyc - You have a sufficient balance in your Binance funding wallet - You need Enable Withdrawals for the API Key which requests this endpoint. Daily creation volume: 2 BTC / 24H Daily creation times: 200 Codes / 24H Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/giftcard/buyCode. |
binance.binance_get_sapi_v1_giftcard_buycode_token_limit | Read read | 3 | Fetch Token Limit (USER_DATA) This API is to help you verify which tokens are available for you to purchase fixed-value gift cards as mentioned in section 2 and it's limitation. Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/giftcard/buyCode/token-limit. |
binance.binance_get_sapi_v1_lending_auto_invest_target_asset_list | Read read | 5 | Get target asset list (USER_DATA) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/auto-invest/target-asset/list. |
binance.binance_get_sapi_v1_lending_auto_invest_target_asset_roi_list | Read read | 4 | Get target asset ROI data (USER_DATA) ROI return list for target asset Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/auto-invest/target-asset/roi/list. |
binance.binance_get_sapi_v1_lending_auto_invest_all_asset | Read read | 2 | Query all source asset and target asset (USER_DATA) Query all source assets and target assets Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/auto-invest/all/asset. |
binance.binance_get_sapi_v1_lending_auto_invest_source_asset_list | Read read | 6 | Query source asset list (USER_DATA) Query Source Asset to be used for investment Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/auto-invest/source-asset/list. |
binance.binance_post_sapi_v1_lending_auto_invest_plan_add | Read read | 14 | Investment plan creation (USER_DATA) Post an investment plan creation Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/lending/auto-invest/plan/add. |
binance.binance_post_sapi_v1_lending_auto_invest_plan_edit | Read read | 11 | Investment plan adjustment Query Source Asset to be used for investment Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/lending/auto-invest/plan/edit. |
binance.binance_post_sapi_v1_lending_auto_invest_plan_edit_status | Read read | 4 | Change Plan Status Change Plan Status Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/lending/auto-invest/plan/edit-status. |
binance.binance_get_sapi_v1_lending_auto_invest_plan_list | Read read | 3 | Get list of plans Query plan lists Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/auto-invest/plan/list. |
binance.binance_get_sapi_v1_lending_auto_invest_plan_id | Read read | 4 | Query holding details of the plan Query holding details of the plan Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/auto-invest/plan/id. |
binance.binance_get_sapi_v1_lending_auto_invest_history_list | Read read | 9 | Query subscription transaction history Query subscription transaction history of a plan Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/auto-invest/history/list. |
binance.binance_get_sapi_v1_lending_auto_invest_index_info | Read read | 3 | Query Index Details(USER_DATA) Query index details Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/auto-invest/index/info. |
binance.binance_get_sapi_v1_lending_auto_invest_index_user_summary | Read read | 3 | Query Index Linked Plan Position Details(USER_DATA) Details on users Index-Linked plan position details Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/auto-invest/index/user-summary. |
binance.binance_post_sapi_v1_lending_auto_invest_one_off | Read read | 10 | One Time Transaction(TRADE) One time transaction Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/lending/auto-invest/one-off. |
binance.binance_get_sapi_v1_lending_auto_invest_one_off_status | Read read | 4 | Query One-Time Transaction Status (USER_DATA) Transaction status for one-time transaction Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/auto-invest/one-off/status. |
binance.binance_post_sapi_v1_lending_auto_invest_redeem | Read read | 5 | Index Linked Plan Redemption (TRADE) To redeem index-Linked plan holdings Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/lending/auto-invest/redeem. |
binance.binance_get_sapi_v1_lending_auto_invest_redeem_history | Read read | 8 | Index Linked Plan Redemption History (USER_DATA) Get the history of Index Linked Plan Redemption transactions Max 30 day difference between startTime and endTime If no startTime and endTime, default to show past 30 day records Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/auto-invest/redeem/history. |
binance.binance_get_sapi_v1_lending_auto_invest_rebalance_history | Read read | 6 | Index Linked Plan Rebalance Details (USER_DATA) Get the history of Index Linked Plan Redemption transactions Max 30 day difference between startTime and endTime If no startTime and endTime, default to show past 30 day records Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/lending/auto-invest/rebalance/history. |
binance.binance_post_sapi_v2_eth_staking_eth_stake | Read read | 3 | Subscribe ETH Staking V2(TRADE) Stake ETH to get WBETH - You need to open Enable Spot & Margin Trading permission for the API Key which requests this endpoint. Weight(IP): 150 Official Binance Spot endpoint: POST /sapi/v2/eth-staking/eth/stake. |
binance.binance_post_sapi_v1_eth_staking_eth_redeem | Read read | 4 | Redeem ETH (TRADE) Redeem WBETH or BETH and get ETH - You need to open Enable Spot & Margin Trading permission for the API Key which requests this endpoint. Weight(IP): 150 Official Binance Spot endpoint: POST /sapi/v1/eth-staking/eth/redeem. |
binance.binance_get_sapi_v1_eth_staking_eth_history_stakinghistory | Read read | 6 | Get ETH staking history (USER_DATA) - The time between startTime and endTime cannot be longer than 3 months. - If startTime and endTime are both not sent, then the last 30 days' data will be returned. - If startTime is sent but endTime is not sent, the next 30 days' data beginning from startTime will be returned. - If endTime is sent but startTime is not sent, the 30 days' data before endTime will be returned. Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/eth-staking/eth/history/stakingHistory. |
binance.binance_get_sapi_v1_eth_staking_eth_history_redemptionhistory | Read read | 6 | Get ETH redemption history (USER_DATA) - The time between startTime and endTime cannot be longer than 3 months. - If startTime and endTime are both not sent, then the last 30 days' data will be returned. - If startTime is sent but endTime is not sent, the next 30 days' data beginning from startTime will be returned. - If endTime is sent but startTime is not sent, the 30 days' data before endTime will be returned. Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/eth-staking/eth/history/redemptionHistory. |
binance.binance_get_sapi_v1_eth_staking_eth_history_rewardshistory | Read read | 6 | Get BETH rewards distribution history(USER_DATA) - The time between startTime and endTime cannot be longer than 3 months. - If startTime and endTime are both not sent, then the last 30 days' data will be returned. - If startTime is sent but endTime is not sent, the next 30 days' data beginning from startTime will be returned. - If endTime is sent but startTime is not sent, the 30 days' data before endTime will be returned. Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/eth-staking/eth/history/rewardsHistory. |
binance.binance_get_sapi_v1_eth_staking_eth_quota | Read read | 2 | Get current ETH staking quota (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/eth-staking/eth/quota. |
binance.binance_get_sapi_v1_eth_staking_eth_history_ratehistory | Read read | 6 | Get WBETH Rate History (USER_DATA) - The time between startTime and endTime cannot be longer than 3 months. - If startTime and endTime are both not sent, then the last 30 days' data will be returned. - If startTime is sent but endTime is not sent, the next 30 days' data beginning from startTime will be returned. - If endTime is sent but startTime is not sent, the 30 days' data before endTime will be returned. Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/eth-staking/eth/history/rateHistory. |
binance.binance_get_sapi_v2_eth_staking_account | Read read | 2 | ETH Staking account V2(USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v2/eth-staking/account. |
binance.binance_post_sapi_v1_eth_staking_wbeth_wrap | Read read | 3 | Wrap BETH(TRADE) - You need to open Enable Spot & Margin Trading permission for the API Key which requests this endpoint. Weight(IP): 150 Official Binance Spot endpoint: POST /sapi/v1/eth-staking/wbeth/wrap. |
binance.binance_get_sapi_v1_eth_staking_wbeth_history_wraphistory | Read read | 6 | Get WBETH wrap history (USER_DATA) - The time between startTime and endTime cannot be longer than 3 months. - If startTime and endTime are both not sent, then the last 30 days' data will be returned. - If startTime is sent but endTime is not sent, the next 30 days' data beginning from startTime will be returned. - If endTime is sent but startTime is not sent, the 30 days' data before endTime will be returned. Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/eth-staking/wbeth/history/wrapHistory. |
binance.binance_get_sapi_v1_eth_staking_wbeth_history_unwraphistory | Read read | 6 | Get WBETH unwrap history (USER_DATA) - The time between startTime and endTime cannot be longer than 3 months. - If startTime and endTime are both not sent, then the last 30 days' data will be returned. - If startTime is sent but endTime is not sent, the next 30 days' data beginning from startTime will be returned. - If endTime is sent but startTime is not sent, the 30 days' data before endTime will be returned. Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/eth-staking/wbeth/history/unwrapHistory. |
binance.binance_get_sapi_v1_eth_staking_eth_history_wbethrewardshistory | Read read | 6 | Get WBETH rewards history(USER_DATA) - The time between startTime and endTime cannot be longer than 3 months. - If startTime and endTime are both not sent, then the last 30 days' data will be returned. - If startTime is sent but endTime is not sent, the next 30 days' data beginning from startTime will be returned. - If endTime is sent but startTime is not sent, the 30 days' data before endTime will be returned. Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/eth-staking/eth/history/wbethRewardsHistory. |
binance.binance_get_sapi_v1_copytrading_futures_userstatus | Read read | 2 | Get Futures Lead Trader Status(TRADE) Get Futures Lead Trader Status Weight(UID): 20 Official Binance Spot endpoint: GET /sapi/v1/copyTrading/futures/userStatus. |
binance.binance_get_sapi_v1_copytrading_futures_leadsymbol | Read read | 2 | Get Futures Lead Trading Symbol Whitelist(USER_DATA) Get Futures Lead Trading Symbol Whitelist Weight(IP): 20 Official Binance Spot endpoint: GET /sapi/v1/copyTrading/futures/leadSymbol. |
binance.binance_get_sapi_v1_simple_earn_flexible_list | Read read | 5 | Get Simple Earn Flexible Product List (USER_DATA) Get available Simple Earn flexible product list Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/flexible/list. |
binance.binance_get_sapi_v1_simple_earn_locked_list | Read read | 5 | Get Simple Earn Locked Product List (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/locked/list. |
binance.binance_post_sapi_v1_simple_earn_flexible_subscribe | Read read | 6 | Subscribe Flexible Product (TRADE) Weight(IP): 1 Rate Limit: 1/3s per account Official Binance Spot endpoint: POST /sapi/v1/simple-earn/flexible/subscribe. |
binance.binance_post_sapi_v1_simple_earn_locked_subscribe | Read read | 7 | Subscribe Locked Product (TRADE) Weight(IP): 1 Rate Limit: 1/3s per account Official Binance Spot endpoint: POST /sapi/v1/simple-earn/locked/subscribe. |
binance.binance_post_sapi_v1_simple_earn_flexible_redeem | Read read | 6 | Redeem Flexible Product (TRADE) Weight(IP): 1 Rate Limit: 1/3s per account Official Binance Spot endpoint: POST /sapi/v1/simple-earn/flexible/redeem. |
binance.binance_post_sapi_v1_simple_earn_locked_redeem | Read read | 3 | Redeem Locked Product (TRADE) Weight(IP): 1 Rate Limit: 1/3s per account Official Binance Spot endpoint: POST /sapi/v1/simple-earn/locked/redeem. |
binance.binance_get_sapi_v1_simple_earn_flexible_position | Read read | 6 | Get Flexible Product Position (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/flexible/position. |
binance.binance_get_sapi_v1_simple_earn_locked_position | Read read | 7 | Get Locked Product Position (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/locked/position. |
binance.binance_get_sapi_v1_simple_earn_account | Read read | 2 | Simple Account (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/account. |
binance.binance_get_sapi_v1_simple_earn_flexible_history_subscriptionrecord | Read read | 9 | Get Flexible Subscription Record (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/flexible/history/subscriptionRecord. |
binance.binance_get_sapi_v1_simple_earn_locked_history_subscriptionrecord | Read read | 8 | Get Locked Subscription Record (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/locked/history/subscriptionRecord. |
binance.binance_get_sapi_v1_simple_earn_flexible_history_redemptionrecord | Read read | 7 | Get Flexible Redemption Record (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/flexible/history/redemptionRecord. |
binance.binance_get_sapi_v1_simple_earn_locked_history_redemptionrecord | Read read | 9 | Get Locked Redemption Record (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/locked/history/redemptionRecord. |
binance.binance_get_sapi_v1_simple_earn_flexible_history_rewardsrecord | Read read | 5 | Get Flexible Rewards History (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/flexible/history/rewardsRecord. |
binance.binance_get_sapi_v1_simple_earn_locked_history_rewardsrecord | Read read | 7 | Get Locked Rewards History (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/locked/history/rewardsRecord. |
binance.binance_post_sapi_v1_simple_earn_flexible_setautosubscribe | Read read | 4 | Set Flexible Auto Subscribe (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: POST /sapi/v1/simple-earn/flexible/setAutoSubscribe. |
binance.binance_post_sapi_v1_simple_earn_locked_setautosubscribe | Read read | 4 | Set Locked Auto Subscribe (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: POST /sapi/v1/simple-earn/locked/setAutoSubscribe. |
binance.binance_get_sapi_v1_simple_earn_flexible_personalleftquota | Read read | 3 | Get Flexible Personal Left Quota (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/flexible/personalLeftQuota. |
binance.binance_get_sapi_v1_simple_earn_locked_personalleftquota | Read read | 3 | Get Locked Personal Left Quota (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/locked/personalLeftQuota. |
binance.binance_get_sapi_v1_simple_earn_flexible_subscriptionpreview | Read read | 4 | Get Flexible Subscription Preview (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/flexible/subscriptionPreview. |
binance.binance_get_sapi_v1_simple_earn_locked_subscriptionpreview | Read read | 5 | Get Locked Subscription Preview (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/locked/subscriptionPreview. |
binance.binance_get_sapi_v1_simple_earn_locked_setredeemoption | Read read | 4 | Set Locked Product Redeem Option(USER_DATA) Set redeem option for Locked product Weight(IP): 50 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/locked/setRedeemOption. |
binance.binance_get_sapi_v1_simple_earn_flexible_history_ratehistory | Read read | 7 | Get Rate History (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/flexible/history/rateHistory. |
binance.binance_get_sapi_v1_simple_earn_flexible_history_collateralrecord | Read read | 7 | Get Collateral Record (USER_DATA) Weight(IP): 150 Official Binance Spot endpoint: GET /sapi/v1/simple-earn/flexible/history/collateralRecord. |
binance.binance_get_sapi_v1_dci_product_list | Read read | 7 | Get Dual Investment product list(USER_DATA) Get Dual Investment product list Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/dci/product/list. |
binance.binance_post_sapi_v1_dci_product_subscribe | Read read | 6 | Subscribe Dual Investment products(USER_DATA) Subscribe Dual Investment products - `Products are not available.` means that the APR changes to lower value, or the orders are not available. - `Failed` is a system or network errors. Weight(IP): 1 Official Binance Spot endpoint: POST /sapi/v1/dci/product/subscribe. |
binance.binance_get_sapi_v1_dci_product_positions | Read read | 5 | Get Dual Investment positions(USER_DATA) Get Dual Investment positions (batch) Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/dci/product/positions. |
binance.binance_get_sapi_v1_dci_product_accounts | Read read | 2 | Check Dual Investment accounts(USER_DATA) Check Dual Investment accounts Weight(IP): 1 Official Binance Spot endpoint: GET /sapi/v1/dci/product/accounts. |
binance.binance_post_sapi_v1_dci_product_auto_compound_edit_status | Read read | 4 | Change Auto-Compound status(USER_DATA) Change Auto-Compound status - 15:31 ~ 16:00 UTC+8 This function is disabled Weight(IP): 1 Rate Limit: Maximum 1 time/s per account Official Binance Spot endpoint: POST /sapi/v1/dci/product/auto_compound/edit-status. |