kraken-api-client 0.1.0

An async Rust client library for the Kraken exchange REST and WebSocket v2 APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
//! Private REST API endpoints (authentication required).
//!
//! These endpoints require API credentials to be configured on the client.

mod types;

pub use types::*;

use crate::error::KrakenError;
use crate::spot::rest::SpotRestClient;
use crate::spot::rest::endpoints::private;

impl SpotRestClient {
    /// Get account balance.
    ///
    /// Returns the balances of all assets in the account.
    ///
    /// # Example
    ///
    /// ```rust,no_run
    /// use kraken_api_client::spot::rest::SpotRestClient;
    /// use kraken_api_client::auth::StaticCredentials;
    /// use std::sync::Arc;
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let credentials = Arc::new(StaticCredentials::new("key", "secret"));
    ///     let client = SpotRestClient::builder().credentials(credentials).build();
    ///
    ///     let balances = client.get_account_balance().await?;
    ///     for (asset, balance) in balances {
    ///         println!("{}: {}", asset, balance);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub async fn get_account_balance(
        &self,
    ) -> Result<std::collections::HashMap<String, rust_decimal::Decimal>, KrakenError> {
        #[derive(serde::Serialize)]
        struct Empty {}
        self.private_post(private::BALANCE, &Empty {}).await
    }

    /// Get extended balance with hold amounts.
    pub async fn get_extended_balance(&self) -> Result<ExtendedBalances, KrakenError> {
        #[derive(serde::Serialize)]
        struct Empty {}
        self.private_post(private::BALANCE_EX, &Empty {}).await
    }

    /// Get trade balance.
    ///
    /// Returns margin account details including equity, margin, and P&L.
    pub async fn get_trade_balance(
        &self,
        request: Option<&TradeBalanceRequest>,
    ) -> Result<TradeBalance, KrakenError> {
        match request {
            Some(req) => self.private_post(private::TRADE_BALANCE, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::TRADE_BALANCE, &Empty {}).await
            }
        }
    }

    /// Get open orders.
    pub async fn get_open_orders(
        &self,
        request: Option<&OpenOrdersRequest>,
    ) -> Result<OpenOrders, KrakenError> {
        match request {
            Some(req) => self.private_post(private::OPEN_ORDERS, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::OPEN_ORDERS, &Empty {}).await
            }
        }
    }

    /// Get closed orders.
    pub async fn get_closed_orders(
        &self,
        request: Option<&ClosedOrdersRequest>,
    ) -> Result<ClosedOrders, KrakenError> {
        match request {
            Some(req) => self.private_post(private::CLOSED_ORDERS, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::CLOSED_ORDERS, &Empty {}).await
            }
        }
    }

    /// Query specific orders by ID.
    pub async fn query_orders(
        &self,
        request: &QueryOrdersRequest,
    ) -> Result<std::collections::HashMap<String, Order>, KrakenError> {
        self.private_post(private::QUERY_ORDERS, request).await
    }

    /// Get trades history.
    pub async fn get_trades_history(
        &self,
        request: Option<&TradesHistoryRequest>,
    ) -> Result<TradesHistory, KrakenError> {
        match request {
            Some(req) => self.private_post(private::TRADES_HISTORY, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::TRADES_HISTORY, &Empty {}).await
            }
        }
    }

    /// Get open positions.
    pub async fn get_open_positions(
        &self,
        request: Option<&OpenPositionsRequest>,
    ) -> Result<std::collections::HashMap<String, Position>, KrakenError> {
        match request {
            Some(req) => self.private_post(private::OPEN_POSITIONS, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::OPEN_POSITIONS, &Empty {}).await
            }
        }
    }

    /// Get ledger entries.
    pub async fn get_ledgers(
        &self,
        request: Option<&LedgersRequest>,
    ) -> Result<LedgersInfo, KrakenError> {
        match request {
            Some(req) => self.private_post(private::LEDGERS, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::LEDGERS, &Empty {}).await
            }
        }
    }

    /// Get trade volume and fee info.
    pub async fn get_trade_volume(
        &self,
        request: Option<&TradeVolumeRequest>,
    ) -> Result<TradeVolume, KrakenError> {
        match request {
            Some(req) => self.private_post(private::TRADE_VOLUME, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::TRADE_VOLUME, &Empty {}).await
            }
        }
    }

    // ========== Funding Endpoints ==========

    /// Get available deposit methods for an asset.
    pub async fn get_deposit_methods(
        &self,
        request: &DepositMethodsRequest,
    ) -> Result<Vec<DepositMethod>, KrakenError> {
        self.private_post(private::DEPOSIT_METHODS, request).await
    }

    /// Get deposit addresses for an asset and method.
    pub async fn get_deposit_addresses(
        &self,
        request: &DepositAddressesRequest,
    ) -> Result<Vec<DepositAddress>, KrakenError> {
        self.private_post(private::DEPOSIT_ADDRESSES, request).await
    }

    /// Get deposit status.
    pub async fn get_deposit_status(
        &self,
        request: Option<&DepositStatusRequest>,
    ) -> Result<DepositWithdrawStatusResponse, KrakenError> {
        match request {
            Some(req) => self.private_post(private::DEPOSIT_STATUS, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::DEPOSIT_STATUS, &Empty {}).await
            }
        }
    }

    /// Get available withdrawal methods.
    pub async fn get_withdraw_methods(
        &self,
        request: Option<&WithdrawMethodsRequest>,
    ) -> Result<Vec<WithdrawMethod>, KrakenError> {
        match request {
            Some(req) => self.private_post(private::WITHDRAW_METHODS, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::WITHDRAW_METHODS, &Empty {})
                    .await
            }
        }
    }

    /// Get withdrawal addresses.
    pub async fn get_withdraw_addresses(
        &self,
        request: Option<&WithdrawAddressesRequest>,
    ) -> Result<Vec<WithdrawalAddress>, KrakenError> {
        match request {
            Some(req) => self.private_post(private::WITHDRAW_ADDRESSES, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::WITHDRAW_ADDRESSES, &Empty {})
                    .await
            }
        }
    }

    /// Get withdrawal info (limits and fees).
    pub async fn get_withdraw_info(
        &self,
        request: &WithdrawInfoRequest,
    ) -> Result<WithdrawInfo, KrakenError> {
        self.private_post(private::WITHDRAW_INFO, request).await
    }

    /// Withdraw funds.
    pub async fn withdraw_funds(
        &self,
        request: &WithdrawRequest,
    ) -> Result<ConfirmationRefId, KrakenError> {
        self.private_post(private::WITHDRAW, request).await
    }

    /// Get withdrawal status.
    pub async fn get_withdraw_status(
        &self,
        request: Option<&WithdrawStatusRequest>,
    ) -> Result<DepositWithdrawStatusResponse, KrakenError> {
        match request {
            Some(req) => self.private_post(private::WITHDRAW_STATUS, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::WITHDRAW_STATUS, &Empty {}).await
            }
        }
    }

    /// Cancel a withdrawal.
    pub async fn withdraw_cancel(
        &self,
        request: &WithdrawCancelRequest,
    ) -> Result<bool, KrakenError> {
        self.private_post(private::WITHDRAW_CANCEL, request).await
    }

    /// Transfer funds between wallets (e.g., Spot to Futures).
    pub async fn wallet_transfer(
        &self,
        request: &WalletTransferRequest,
    ) -> Result<ConfirmationRefId, KrakenError> {
        self.private_post(private::WALLET_TRANSFER, request).await
    }

    // ========== Earn Endpoints ==========

    /// Allocate funds to an earn strategy.
    pub async fn earn_allocate(&self, request: &EarnAllocateRequest) -> Result<bool, KrakenError> {
        self.private_post(private::EARN_ALLOCATE, request).await
    }

    /// Deallocate funds from an earn strategy.
    pub async fn earn_deallocate(
        &self,
        request: &EarnAllocateRequest,
    ) -> Result<bool, KrakenError> {
        self.private_post(private::EARN_DEALLOCATE, request).await
    }

    /// Get earn allocation status.
    pub async fn get_earn_allocation_status(
        &self,
        request: &EarnAllocationStatusRequest,
    ) -> Result<AllocationStatus, KrakenError> {
        self.private_post(private::EARN_ALLOCATE_STATUS, request)
            .await
    }

    /// Get earn deallocation status.
    pub async fn get_earn_deallocation_status(
        &self,
        request: &EarnAllocationStatusRequest,
    ) -> Result<AllocationStatus, KrakenError> {
        self.private_post(private::EARN_DEALLOCATE_STATUS, request)
            .await
    }

    /// List earn strategies.
    pub async fn list_earn_strategies(
        &self,
        request: Option<&EarnStrategiesRequest>,
    ) -> Result<EarnStrategies, KrakenError> {
        match request {
            Some(req) => self.private_post(private::EARN_STRATEGIES, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::EARN_STRATEGIES, &Empty {}).await
            }
        }
    }

    /// List earn allocations.
    pub async fn list_earn_allocations(
        &self,
        request: Option<&EarnAllocationsRequest>,
    ) -> Result<EarnAllocations, KrakenError> {
        match request {
            Some(req) => self.private_post(private::EARN_ALLOCATIONS, req).await,
            None => {
                #[derive(serde::Serialize)]
                struct Empty {}
                self.private_post(private::EARN_ALLOCATIONS, &Empty {})
                    .await
            }
        }
    }

    /// Add a new order.
    ///
    /// # Example
    ///
    /// ```rust,no_run
    /// use kraken_api_client::spot::rest::{SpotRestClient, private::AddOrderRequest};
    /// use kraken_api_client::{BuySell, OrderType};
    /// use kraken_api_client::auth::StaticCredentials;
    /// use rust_decimal::Decimal;
    /// use std::str::FromStr;
    /// use std::sync::Arc;
    ///
    /// #[tokio::main]
    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
    ///     let credentials = Arc::new(StaticCredentials::new("key", "secret"));
    ///     let client = SpotRestClient::builder().credentials(credentials).build();
    ///
    ///     let request = AddOrderRequest::new(
    ///         "XBTUSD",
    ///         BuySell::Buy,
    ///         OrderType::Limit,
    ///         Decimal::from_str("0.001")?,
    ///     )
    ///     .price(Decimal::from_str("50000")?)
    ///     .validate(true); // Validate only, don't actually place
    ///
    ///     let result = client.add_order(&request).await?;
    ///     println!("Order result: {:?}", result);
    ///     Ok(())
    /// }
    /// ```
    pub async fn add_order(
        &self,
        request: &AddOrderRequest,
    ) -> Result<AddOrderResponse, KrakenError> {
        self.private_post(private::ADD_ORDER, request).await
    }

    /// Cancel an order.
    pub async fn cancel_order(
        &self,
        request: &CancelOrderRequest,
    ) -> Result<CancelOrderResponse, KrakenError> {
        self.private_post(private::CANCEL_ORDER, request).await
    }

    /// Cancel all open orders.
    pub async fn cancel_all_orders(&self) -> Result<CancelOrderResponse, KrakenError> {
        #[derive(serde::Serialize)]
        struct Empty {}
        self.private_post(private::CANCEL_ALL, &Empty {}).await
    }

    /// Get a WebSocket authentication token.
    ///
    /// The token is valid for 15 minutes and is used to authenticate
    /// WebSocket connections to private channels.
    pub async fn get_websocket_token(&self) -> Result<WebSocketToken, KrakenError> {
        #[derive(serde::Serialize)]
        struct Empty {}
        self.private_post(private::GET_WEBSOCKETS_TOKEN, &Empty {})
            .await
    }
}