Crates.io | bondora |
lib.rs | bondora |
version | 0.2.5 |
source | src |
created_at | 2022-01-23 12:20:44.609588 |
updated_at | 2023-05-19 12:23:24.159888 |
description | Bondora API client |
homepage | |
repository | https://github.com/JensWalter/bondora-rs |
max_upload_size | |
id | 519646 |
size | 348,956 |
Bondora API version 1
source: https://api.bondora.com/swagger/docs/v1
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);
}
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.