8 releases
0.2.5 | May 19, 2023 |
---|---|
0.2.4 | Jan 9, 2023 |
0.2.3 | Sep 9, 2022 |
0.2.2 | Feb 12, 2022 |
0.1.1 | Jan 23, 2022 |
#1709 in Web programming
190KB
3.5K
SLoC
Rust client for the Bondora API
Bondora API version 1
Overview
source: https://api.bondora.com/swagger/docs/v1
Usage
use bondora::apis::APIClient;
use bondora::apis::AccountApi;
use bondora::models::AuctionRequest;
#[tokio::main]
async fn main() {
let token = "ZACK0HC58KAOkGCyM3W932YHh2C3h4cr5WqHm2Y076Ek0xRa".to_string();
let client = APIClient::new(token);
let result = client.account_get_balance().await.unwrap();
println!("{:?}", result);
}
Generate your API key
Head over to https://api.bondora.com/Application and register you App with Bondora. After that you can generate an API key within the UI.
Dependencies
~15–25MB
~477K SLoC