CoinGeckoAPIWrapper 1.0.0
dotnet add package CoinGeckoAPIWrapper --version 1.0.0
NuGet\Install-Package CoinGeckoAPIWrapper -Version 1.0.0
<PackageReference Include="CoinGeckoAPIWrapper" Version="1.0.0" />
paket add CoinGeckoAPIWrapper --version 1.0.0
#r "nuget: CoinGeckoAPIWrapper, 1.0.0"
// 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).
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- Newtonsoft.Json (>= 13.0.3)
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 | 243 | 4/4/2023 |
Initial Release