Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
/ FinnHub.Core Public archive
forked from FrankTreadwell/FinnHubNet

A C# Wrapper for FinnHub.io API

Notifications You must be signed in to change notification settings

MILL5/FinnHub.Core

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

THIS REPOSITORY IS NO LONGER SUPPORTED SINCE WE WILL BE USING INTRINIO, POLYGON, AND EODDATA INSTEAD OF FINNHUB! THANK YOU FOR YOUR INTEREST. WE ARE MAKING THIS REPOSITORY READONLY SO THAT OTHERS CAN BENEFIT FROM THIS EFFORT.

FinnHub.Core

This is a .NET class library for the FinnHub APIs for use with .NET Standard, .NET Core, and the new .NET 5.0. We will be supporting the premium features of the FinnHub API in addition to the standard features (i.e. free).

To Use:

Install using Nuget:

PM > Install-Package FinnHub.Core -Version 1.0.0

Create a FinnSettings Object to pass into each request:

Example:

FinnHub.Core.FinnSettings settings = new FinnHubNet.FinnSettings
            {
                ApiKey = "YOUR API KEY",
                BaseURL = "CURRENT BASE URL", //current URL is https://finnhub.io/
                Version = "API VERSION URL" //current version is "/api/v1"
            };

In requests you will pass the FinnSettings object along with any other parameters needed.

Example:

var j = FinnHub.Core.Get.CompanyInfo(settings, ticker);

You can then access data from CompanyInfo object J or whichever request you are using.

All implemented requests are in the Get class for easy access.

Current FinnnHub API Requests available:

-CompanyInfo

-CompanyNews

-News

-Quote

-StockSymbols

-Sentiment

-Peers

-BasicFinancials

-ReportedFinancials

-Filings (SEC Filings)

-IpoCalendar

-Recommendations

-Target (Target Prices)

-EPSs (Earnings Releases)

-EarningsCalendar

About

A C# Wrapper for FinnHub.io API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%