#websocket #kraken #trading #api-client #client #api

kraken_ws_client

A strongly-typed client for the Kraken WebSocket API

5 releases (breaking)

0.25.0 Jan 29, 2024
0.24.0 Jan 4, 2024
0.23.0 Sep 6, 2023
0.22.0 Aug 27, 2023
0.20.0 Aug 14, 2023

#2232 in Magic Beans

Download history 7/week @ 2023-12-31 7/week @ 2024-01-28 18/week @ 2024-02-11 49/week @ 2024-02-18 33/week @ 2024-02-25 13/week @ 2024-03-03 24/week @ 2024-03-10 7/week @ 2024-03-17 31/week @ 2024-03-31

63 downloads per month

Apache-2.0

42KB
1K SLoC

Kraken WebSocket API Client

A strongly-typed Rust SDK for the Kraken WebSocket API.

This crate is an unofficial, community-driven effort.

Installation

[dependencies]
kraken_ws_client = "0.24"

Usage

use futures::StreamExt;
use kraken_ws_client::api::SubscribeTickerRequest;

#[tokio::main]
async fn main() {
    let mut client = kraken_ws_client::connect_public()
        .await
        .expect("cannot connect");

    client
        .send(SubscribeTickerRequest::symbol("BTC/USD"))
        .await
        .expect("cannot send request");

    while let Some(event) = client.ticker_events().next().await {
        dbg!(&event);
    }
}
use kraken_rest_client::Client as RestClient;

let api_key = std::env::var("KRAKEN_API_KEY").expect("api key not defined");
let api_secret = std::env::var("KRAKEN_API_SECRET").expect("api secret not defined");

let rest_client = RestClient::new(api_key, api_secret);
let resp = rest_client.get_web_sockets_token().send().await?;
let token = resp.token;

let mut ws_private_client = kraken_ws_client::connect_private(token)
    .await
    .expect("cannot connect");

ws_private_client
    .send(SubscribeExecutionsRequest::new())
    .await
    .expect("cannot send request");

while let Ok(msg) = ws_private_client.messages().recv().await {
    dbg!(msg);
}

or run the example:

cargo run --example ticker

Status

The software is under active development and the API is expected to change.

Contributing

Pull requests, issues and comments are welcome! Make sure to add tests for new features and bug fixes.

License

This work is licensed under the Apache-2.0 License. See LICENSE.txt or https://spdx.org/licenses/Apache-2.0.html for details.

Copyright © 2022 Georgios Moschovitis.

Dependencies

~6–15MB
~146K SLoC