A Rust-based wrapper for the Alpha Vantage API for financial data.
avapi
is a Rust Crate for consuming the Alpha Vantage API as a client. avapi
is based on Reqwest.
In your Cargo.toml
, add the following lines:
toml
[dependencies]
avapi = "0.1"
```rust,no_run extern crate avapi;
use avapi::{endpoints, models};
fn main() {
let apikey = String::from("
This crate has been tested with Stable Rust versions 1.29.2 and above.
MIT