Coinpaprika API

Logo

Coinpaprika API Rust library provides access to Coinpaprika API for applications written in Rust programming language.

Coinpaprika API delivers precise & frequently updated market data from the world of crypto: coin prices, volumes, market caps, ATHs, return rates and more.

Usage

Put this in your Cargo.toml:

toml [dependencies] coinpaprika_api = "0.1"

Then you can use it like this:

```rust use coinpaprikaapi::client::Client; use coinpaprikaapi::global::Global; use std::error::Error;

[tokio::main]

async fn main() -> Result<(), Box> { let client = Client::new();

let global: Global = client.global().send().await?;
println!("global: {:#?}", global);

Ok(())

} ```

We include examples for each section of the API, located in /examples folder.

Supported Endpoints

License

CoinpaprikaAPI Rust client is available under the MIT license. See the LICENSE file for more info.