.NET Standard client for accessing FinnHub.io finance APIs, including streaming data via WebSocket
- .NET Standard 2.1
using FinnHubSharp.DataModels.Request;
using FinnHubSharp.Implementations;
using FinnHubSharp.Logging;
var client = new FinnHubClient(new HttpClient(), "YOUR_API_KEY", new NullLogger<FinnHubSharpLogger>());
var quote = await client.GetQuoteAsync("AAPL");
double price = quote.CurrentPrice;