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

#1137 in Web programming

Download history 4/week @ 2024-02-19 30/week @ 2024-02-26 9/week @ 2024-03-11 85/week @ 2024-04-01

94 downloads per month

Apache-2.0

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–27MB
~504K SLoC