MatthiWare.FinancialModelingPrep 0.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package MatthiWare.FinancialModelingPrep --version 0.1.0
                    
NuGet\Install-Package MatthiWare.FinancialModelingPrep -Version 0.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MatthiWare.FinancialModelingPrep" Version="0.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MatthiWare.FinancialModelingPrep" Version="0.1.0" />
                    
Directory.Packages.props
<PackageReference Include="MatthiWare.FinancialModelingPrep" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MatthiWare.FinancialModelingPrep --version 0.1.0
                    
#r "nuget: MatthiWare.FinancialModelingPrep, 0.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=MatthiWare.FinancialModelingPrep&version=0.1.0
                    
Install MatthiWare.FinancialModelingPrep as a Cake Addin
#tool nuget:?package=MatthiWare.FinancialModelingPrep&version=0.1.0
                    
Install MatthiWare.FinancialModelingPrep as a Cake Tool

FinancialModelingPrep.NET

C# API Client For Financial Modeling Prep API written in .NET 5

Installation

PM> Install-Package MatthiWare.FinancialModelingPrep

Quick Start

Register FinancialModelingPrepApiClient in Dependency Injection provider

Services.AddFinancialModelingPrepApiClient(new FinancialModelingPrepOptions() 
{
    ApiKey = "API-KEY-HERE"
});

Resolve FMP API Client

var apiClient = ServiceProvider.GetRequiredService<IFinancialModelingPrepApiClient>();

// do something with apiClient like getting the latest Apple Stock Quote
var quoteResult = await api.CompanyValuation.GetQuoteAsync("AAPL");

All API Responses are wrapped in an ApiResponse<T> object.

var quoteResult = await api.CompanyValuation.GetQuoteAsync("AAPL");

// Display Apple Stock Quote
if (!quoteResult.HasError)
{
   Console.WriteLine($"$AAPL is currently trading at: {quoteResult.Data.Price}");
} 
else 
{
   Console.WriteLine($"Error Message: {quoteResult.Error}");
}
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.4.1 288 2/23/2025
0.4.0 116 2/20/2025
0.3.3 216 1/14/2025
0.3.2 94 1/12/2025
0.3.0 877 6/8/2024
0.2.2 1,444 2/8/2023
0.2.1 305 2/6/2023
0.2.0 399 11/19/2022
0.1.14 533 10/2/2022
0.1.13 510 7/10/2022
0.1.12 521 6/17/2022
0.1.11 467 6/16/2022
0.1.10 467 6/8/2022
0.1.9 586 2/19/2022
0.1.8 403 11/19/2021
0.1.7 369 11/5/2021
0.1.6 359 10/2/2021
0.1.5 366 8/9/2021
0.1.4 419 7/11/2021
0.1.3 425 6/4/2021
0.1.2 400 5/31/2021
0.1.1 384 5/24/2021
0.1.0 400 5/20/2021

First version with basic endpoints implemented