fmp-rs 0.1.1

Production-grade Rust client for Financial Modeling Prep API with intelligent caching, rate limiting, and comprehensive endpoint coverage
Documentation
//! API endpoint implementations.

mod analyst;
mod bulk;
mod charts;
mod commodities;
mod company_info;
mod company_search;
mod congress;
mod corporate_actions;
mod crypto;
mod dcf;
mod economics;
mod esg;
mod etf;
mod financials;
mod forex;
mod indexes;
mod insider_trades;
mod institutional;
mod market_hours;
mod market_performance;
mod mutual_funds;
mod news;
mod quote;
mod sec_filings;
mod stock_directory;
mod technical_indicators;
mod transcripts;

pub use analyst::Analyst;
pub use bulk::Bulk;
pub use charts::Charts;
pub use commodities::Commodities;
pub use company_info::CompanyInfo;
pub use company_search::CompanySearch;
pub use congress::Congress;
pub use corporate_actions::CorporateActions;
pub use crypto::Crypto;
pub use dcf::Dcf;
pub use economics::Economics;
pub use esg::Esg;
pub use etf::Etf;
pub use financials::Financials;
pub use forex::Forex;
pub use indexes::Indexes;
pub use insider_trades::InsiderTrades;
pub use institutional::Institutional;
pub use market_hours::MarketHours;
pub use market_performance::MarketPerformance;
pub use mutual_funds::MutualFunds;
pub use news::News;
pub use quote::Quote;
pub use sec_filings::SecFilings;
pub use stock_directory::StockDirectory;
pub use technical_indicators::TechnicalIndicators;
pub use transcripts::Transcripts;