Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 535 Bytes

README.md

File metadata and controls

25 lines (13 loc) · 535 Bytes

FinnHubSharp

.NET Standard client for accessing FinnHub.io finance APIs, including streaming data via WebSocket

Requirements

  • .NET Standard 2.1

Usage

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;

NuGet

https://nuget.pseudomarkets.live/packages/FinnHubSharp