rust-okx 0.5.0

Async Rust client for the OKX v5 REST API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Typed request/response models and endpoint methods, grouped by OKX API area.
//!
//! Each submodule exposes an accessor type (e.g. [`market::Market`]) reachable
//! from the [`OkxClient`](crate::OkxClient), plus the request and response
//! models for that area.

pub mod account;
pub mod convert;
pub mod finance;
pub mod funding;
pub mod market;
pub mod public_data;
pub mod sub_account;
pub mod trade;