Tudormobile.FinancialData
Tudormobile.FinancialData provides a C# SDK for accessing the FinancialData.Net API.
Important
Pre-release Status: This SDK currently implements 10 out of 80+ available FinancialData.Net API endpoints. See API Coverage for complete implementation status.
📚 Documentation
- Introduction - Architecture overview and roadmap
- Getting Started - Installation, examples, and best practices
- API Coverage - Complete implementation status by endpoint
- API Reference - Detailed method documentation for implemented features
- Generated API Docs - Auto-generated technical reference
🚀 Quick Start
using Tudormobile.FinancialData;
using var httpClient = new HttpClient();
var client = IFinancialDataClient.Create("your_api_key", httpClient);
var stockPrices = await client.GetStockPricesAsync("MSFT");
if (stockPrices.IsSuccess)
{
Console.WriteLine($"MSFT Price: ${stockPrices.Data?[0]?.Close:F2}");
}
🔧 Build Documentation
Building the documentation locally using DocFX.
Links: Source Code | NuGet Package | FinancialData.Net API