AlphaVantage.Net 1.2.0

dotnet add package AlphaVantage.Net --version 1.2.0
NuGet\Install-Package AlphaVantage.Net -Version 1.2.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="AlphaVantage.Net" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AlphaVantage.Net --version 1.2.0
#r "nuget: AlphaVantage.Net, 1.2.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.
// Install AlphaVantage.Net as a Cake Addin
#addin nuget:?package=AlphaVantage.Net&version=1.2.0

// Install AlphaVantage.Net as a Cake Tool
#tool nuget:?package=AlphaVantage.Net&version=1.2.0

AlphaVantage.Net

Name Status History
GitHub Actions Build GitHub Actions Build History

NuGet GitHub release GitHub license GitHub issues GitHub issues-closed

What is AlphaVantage.Net?

AlphaVantage.Net is a library for interacting with Alpha Vantage's equity APIs. See their documentation here. It is supported for .net 6.0+.

Where can I get it?

AlphaVantage.Net is available at nuget.org.

Package Manager PM > Install-Package AlphaVantage.Net

How it works?

You can make all calls to Alpha Vantage's API via the AlphaVantage.AlphaVantageClient class.

var client = new AlphaVantageClient(
	"<key>",
	maxApiCallsPerMinute: 5);

// Retrieving the most recent daily history for IBM.
var result = await client.GetDailyTimeSeries(
	new()
	{
		Symbol = "IBM",
	});

.NET Core Configuration Options

Easy to use:

Call services.AddAlphaVantageClient(IConfigurationRoot). This will automatically bind options from the AlphaVantage section of the root; configure a named HttpClient for AlphaVantage.Net; and configure AlphaVantageClient as a transient.

It is recommended to use AlphaVantage.Net in this way. When using this pattern, all requested instances of AlphaVantageClient will respect the common rate limit specified in the options.

If AlphaVantageClient is constructed directly using the constructor, the rate limiter will only be used by that instance of the AlphaVantageClient; that is, multiple instances of AlphaVantageClient will each have their own rate limiter.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 is compatible.  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 is compatible.  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. 
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
1.2.0 164 2/5/2024
1.1.0 89 1/27/2024
1.0.0 246 11/14/2023
1.0.0-preview.11 60 11/8/2023
1.0.0-preview.10 55 11/7/2023
1.0.0-preview.9 181 7/17/2023
1.0.0-preview.8 92 7/15/2023
1.0.0-preview.7 92 7/10/2023
1.0.0-preview.6 120 3/30/2023
1.0.0-preview.5 152 2/6/2023
1.0.0-preview.4 85 1/31/2023
1.0.0-preview.3 111 1/13/2023
1.0.0-preview.2 84 1/13/2023
1.0.0-preview.1 92 1/13/2023