Financial Modeling Prep Web API | Rust SDK 🦀

fmp-rs is a wrapper for the Financial Modeling Prep Web API.

This is only a partial implementation, feel free to submit a pull request for new endpoints. Also it currently only supports async, a pull request for a blocking client would be welcome.

To learn how to use fmp-rs, please refer to the usage section below.

Cargo

```toml [dependencies]

fmp = "0.2" ```

Usage

```rust use fmp::Client; use fmp::period::FMPPeriod;

[tokio::main]

async fn main() { let client = Client::new( "https://financialmodelingprep.com/api", "", )

let result = fmp.income_statements("AAPL", FMPPeriod::YEAR).await; let statements = result.unwrap(); println!("{:?}", statements); } ```

Available endpoints

Contributing

If you find any problems or have suggestions about this crate, please submit an issue. Moreover, any pull request, code review and feedback are welcome.