CoinGeckoAPIWrapper 1.0.0

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

// Install CoinGeckoAPIWrapper as a Cake Tool
#tool nuget:?package=CoinGeckoAPIWrapper&version=1.0.0

CoinGeckoAPI

C# wrapper for the CoinGeco API

There are many like it, but this one is mine.

Even tho there are plenty of libraries out there that do the same thing, I had trouble getting them to work for me so I created my own.

Available API Services

The services currently still in BETA are not yet available. All other services/request are working. There are classes for each section or category of calls (i.e. CoinMethods) which are accessible via CoinGeckoAPIClient.

The guide provided by CoinGecko is very useful in determining which methods to use, and what arguments are required.

Usage Example:

(leading +/! only for color formatting)

+ CoinGeckoAPIClient.CoinMethods CoinMethods = new CoinGeckoAPIClient.CoinMethods();

+ List<CoinData> CoinList = new List<CoinData>(coinMethods.GetCoinList());

!//OR//

+ var CoinList = CoinMethods.GetCoinList();

Future Improvements

  • Create library for arguments that aren't straight forward (i.e. "Order" is currently a string value like "market_cap_desc"). For example, Method(string Order) would become Method(SortOrder Order).
There are no supported framework assets in this 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.0.0 192 4/4/2023

Initial Release