#trading #exchange #order-book #crypto #okx

okx-rs

Unofficial Rust Library for the OKX V5 API

2 releases

0.1.1 May 3, 2024
0.1.0 Jan 4, 2023

#6 in #exchange

Download history 48/week @ 2024-02-17 10/week @ 2024-02-24 1/week @ 2024-03-02 17/week @ 2024-03-30 5/week @ 2024-04-06 104/week @ 2024-04-27 28/week @ 2024-05-04 8/week @ 2024-05-18

140 downloads per month

MIT/Apache

220KB
4.5K SLoC

okx-rs

Unofficial Rust Library for the OKX V5 API.

Usage

[dependencies]
okx-rs = { git = "https://github.com/roytang121/okx-rs" }

Examples

Get Funding Balances

Get the balance of the funding account.

use okx_rs::api::v5::funding_account::GetFundingBalances;
use okx_rs::api::v5::testkit::with_env_private_client;

/// Rest API - get funding balances
#[tokio::main]
async fn main() {
    with_env_private_client(|client| async move {
        let response = client
            .request(GetFundingBalances {
                ..Default::default()
            })
            .await
            .unwrap();
        println!("{}", serde_json::to_string_pretty(&response).unwrap());
    })
    .await;
}

V5 API Features

The following is a list of all the features that are currently supported by the library. The list is updated as the library is updated. If you find any problems, please submit an issue or pull request.

Trading Account

Rest
  • REST / Get balance
  • REST / Get positions
  • REST / Get positions history
  • REST / Get account and position risk
  • REST / Get bills details (last 7 days)
  • REST / Get bills details (last 3 months)
  • REST / Get account configuration
  • REST / Set position mode
  • REST / Set leverage
  • REST / Get maximum buy/sell amount or open amount
  • REST / Get maximum available tradable amount
  • REST / Increase/decrease margin
  • REST / Get leverage
  • REST / Get leverage estimated info
  • REST / Get the maximum loan of instrument
  • REST / Get fee rates
  • REST / Get interest accrued data
  • REST / Get interest rate
  • REST / Set greeks (PA/BS)
  • REST / Isolated margin trading settings
  • REST / Get maximum withdrawals
  • REST / Get account risk state
  • REST / Manual borrow and repay in Quick Margin Mode
  • REST / Get borrow and repay history in Quick Margin Mode
  • REST / VIP loans borrow and repay
  • REST / Get borrow and repay history for VIP loans
  • REST / Get VIP interest accrued data
  • REST / Get VIP interest deducted data
  • REST / Get VIP loan order list
  • REST / Get VIP loan order detail
  • REST / Get borrow interest and limit
  • REST / Position builder
  • REST / Get Greeks
  • REST / Get PM position limitation
  • REST / Set risk offset type
  • REST / Activate option
  • REST / Set auto loan
  • REST / Set account mode
  • REST / Reset MMP Status
  • REST / Set MMP
  • REST / GET MMP Config
Websocket
  • WS / Account channel
  • WS / Positions channel
  • WS / Balance and position channel
  • WS / Position risk warning
  • WS / Account greeks channel

Orderbook Trading

Endpoints
  • POST / Place order
  • POST / Place multiple orders
  • POST / Cancel order
  • POST / Cancel multiple orders
  • POST / Amend order
  • POST / Amend multiple orders
  • POST / Close positions
  • GET / Order details
  • GET / Order List
  • GET / Order history (last 7 days)
  • GET / Order history (last 3 months)
  • GET / Transaction details (last 3 days)
  • GET / Transaction details (last 3 months)
  • GET / Easy convert currency list
  • POST / Place easy convert
  • GET / Easy convert history
  • GET / One-click repay currency list
  • POST / Trade one-click repay
  • GET / One-click repay history
  • POST / Mass cancel order
  • POST / Cancel All After
  • WS / Order channel
  • WS / Place order
  • WS / Place multiple orders
  • WS / Cancel order
  • WS / Cancel multiple orders
  • WS / Amend order
  • WS / Amend multiple orders
  • WS / Mass cancel order
  • POST / Place algo order
  • POST / Cancel algo order
  • POST / Amend algo order
  • POST / Cancel advance algo order
  • GET / Algo order details
  • GET / Algo order list
  • GET / Algo order history
  • WS / Algo orders channel
  • WS / Advance algo orders channel
  • POST / Place grid algo order
  • POST / Amend grid algo order
  • POST / Stop grid algo order
  • POST / Close position for contract grid
  • POST / Cancel close position order for contract grid
  • POST / Instant trigger grid algo order
  • GET / Grid algo order list
  • GET / Grid algo order history
  • GET / Grid algo order details
  • GET / Grid algo sub orders
  • GET / Grid algo order positions
  • POST / Spot/Moon grid withdraw income
  • POST / Compute margin balance
  • POST / Adjust margin balance
  • GET / Grid AI parameter (public)
  • POST / Compute min investment (public)
  • GET / RSI back testing (public)
  • WS / Spot grid algo orders channel
  • WS / Contract grid algo orders channel
  • WS / Moon grid algo orders channel
  • WS / Grid positions channel
  • WS / Grid sub orders channel
  • POST / Place recurring buy order
  • POST / Amend recurring buy order
  • POST / Stop recurring buy order
  • GET / Recurring buy order list
  • GET / Recurring buy order history
  • GET / Recurring buy order details
  • GET / Recurring buy sub orders
  • WS / Recurring buy orders channel
  • GET / Existing leading positions
  • GET / Leading position history
  • POST / Place leading stop order
  • POST / Close leading position
  • GET / Leading instruments
  • POST / Amend leading instruments
  • GET / Profit sharing details
  • GET / Total profit sharing
  • GET / Unrealized profit sharing details
  • GET / Tickers
  • GET / Ticker
  • GET / Order book
  • GET / Order lite book
  • GET / Candlesticks
  • GET / Candlesticks history
  • GET / Trades
  • GET / Trades history
  • GET / Option trades by instrument family
  • GET / Option trades
  • GET / 24H total volume
  • WS / Tickers channel
  • WS / Candlesticks channel
  • WS / Trades channel
  • WS / All trades channel
  • WS / Order book channel
  • WS / Option trades channel

Funding Account

Rest
  • REST / Get currencies
  • REST / Get balance
  • REST / Get non-tradable assets
  • REST / Get account asset valuation
  • REST / Funds transfer
  • REST / Get funds transfer state
  • REST / Asset bills details
  • REST / Lightning deposits
  • REST / Get deposit address
  • REST / Get deposit history
  • REST / Withdrawal
  • REST / Lightning withdrawals
  • REST / Cancel withdrawal
  • REST / Get withdrawal history
  • REST / Get deposit withdraw status
  • REST / Small assets convert
  • REST / Get exchange list (public)
  • REST / Get convert currencies
  • REST / Get convert currency pair
  • REST / Estimate quote
  • REST / Convert trade
  • REST / Get convert history
Websocket
  • WS / Deposit info channel
  • WS / Withdrawal info channel

Public data

Rest
  • REST / Get instruments
  • REST / Get delivery/exercise history
  • REST / Get open interest
  • REST / Get funding rate
  • REST / Get funding rate history
  • REST / Get limit price
  • REST / Get option market data
  • REST / Get estimated delivery/exercise price
  • REST / Get discount rate and interest-free quota
  • REST / Get system time
  • REST / Get mark price
  • REST / Get position tiers
  • REST / Get interest rate and loan quota
  • REST / Get interest rate and loan quota for VIP loans
  • REST / Get underlying
  • REST / Get insurance fund
  • REST / Unit convert
  • REST / Get option tick bands
  • REST / Get index tickers
  • REST / Get index candlesticks
  • REST / Get index candlesticks history
  • REST / Get mark price candlesticks
  • REST / Get mark price candlesticks history
  • REST / Get oracle
  • REST / Get exchange rate
  • REST / Get index components
Websockets
  • WS / Instruments channel
  • WS / Open interest channel
  • WS / Funding rate channel
  • WS / Price limit channel
  • WS / Option summary channel
  • WS / Estimated delivery/exercise price channel
  • WS / Mark price channel
  • WS / Index tickers channel
  • WS / Mark price candlesticks channel
  • WS / Index candlesticks channel
  • WS / Liquidation orders channel

Financial Product

Earn
  • GET / offers
  • POST / Purchase
  • POST / Redeem
  • POST / Cancel purchases/redemptions
  • GET / Active orders
  • GET / Order history
Savings
  • GET / Saving balance
  • POST / Savings purchase/redemption
  • POST / Set lending rate
  • GET / Lending history
  • GET / public borrow info (public)
  • GET / Public borrow history (public)

Trading Statistics

Rest
  • REST / Get support coin
  • REST / Get taker volume
  • REST / Get margin lending ratio
  • REST / Get long/short ratio
  • REST / Get contracts open interest and volume
  • REST / Get options open interest and volume
  • REST / Get put/call ratio
  • REST / Get open interest and volume (expiry)
  • REST / Get open interest and volume (strike)
  • REST / Get taker flow

Sub-account

Rest
  • REST / Get sub-account list
  • REST / Reset the API Key of a sub-account
  • REST / Get sub-account trading balance
  • REST / Get sub-account funding balance
  • REST / Get sub-account maximum withdrawals
  • REST / Get history of sub-account transfer
  • REST / Get history of managed sub-account transfer
  • REST / Master accounts manage the transfers between sub-accounts
  • REST / Set permission of transfer out
  • REST / Get custody trading sub-account list
  • REST / Get the user's affiliate rebate information
  • REST / Set sub-accounts VIP loan allocation
  • REST / Get sub-account borrow interest and limit

Status

Rest
  • REST / Status
Websocket
  • WS / Status channel

Dependencies

~9–28MB
~437K SLoC