finnhub-rs

License: MIT

Rust client for the Finnhub API. Finnhub is a new Stock API which provides endless data for stocks, currencies, and crypto.

Minimal Example:

```rust // Use finnhub-rs client. use finnhub_rs::client::Client;

fn main() { // Create a new finnhub client. let client = Client::new("MY FINNHUB API KEY".tostring()); // Get a list of supported stocks given the exchange. let res = client.stocksymbol("US".to_string()).await.unwrap(); // Print out the results. println!("{:#?}", res); } ```