https://github.com/tosunthex/cryptocompare-api
Async CryptoCompare API client library for .NET and .NET Core
https://github.com/tosunthex/cryptocompare-api
api api-client api-wrapper async bitcoin bitcoin-api btc cryptocompare cryptocompare-api cryptocurrency dotnet-core dotnet-standard dotnetstandard ethereum litecoin ltc
Last synced: 6 months ago
JSON representation
Async CryptoCompare API client library for .NET and .NET Core
- Host: GitHub
- URL: https://github.com/tosunthex/cryptocompare-api
- Owner: tosunthex
- Created: 2018-07-17T13:30:54.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-19T20:58:26.000Z (over 7 years ago)
- Last Synced: 2025-10-27T10:45:33.644Z (6 months ago)
- Topics: api, api-client, api-wrapper, async, bitcoin, bitcoin-api, btc, cryptocompare, cryptocompare-api, cryptocurrency, dotnet-core, dotnet-standard, dotnetstandard, ethereum, litecoin, ltc
- Language: C#
- Size: 87.9 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CryptoCompare-Api [](https://ci.appveyor.com/project/tosunthex/cryptocompare-api/branch/master) [](https://www.codacy.com/app/tosunthex/CryptoCompare-Api?utm_source=github.com&utm_medium=referral&utm_content=tosunthex/CryptoCompare-Api&utm_campaign=Badge_Grade) [](https://www.nuget.org/packages/CryptoCompareAsyncApi/)[](https://www.nuget.org/packages/CryptoCompareAsyncApi/)
.Net and .Net Core async Crypto Compare client for newest Min-API
## Installation
This Crypto Compare api wrapper library is available on [NuGet](https://www.nuget.org/packages/CryptoCompareAsyncApi/)
## Basic Usage
````csharp
// Using ctor
var client = new CryptoCompareClient();
var response = await client..OtherClient.GetCoinList();
// Using Singleton
var btcId = 1182;
var btc = await CryptoCompareClient.Instance.OtherClient.GetSocialStat(btcId);
````
Package manager
````
Install-Package CryptoCompareAsyncApi
````
.NET CLI
````
dotnet add package CryptoCompareAsyncApi
````
Paket CLI
````
paket add CryptoCompareAsyncApi
````
Target Frameworks and Dependencies
> .NETFramework 4.5
```
Microsoft.AspNet.WebApi.SelfHost (>= 5.2.2)
Newtonsoft.Json (>= 11.0.2)
```
>.NETFramework 4.6.1
```
Microsoft.AspNet.WebApi.SelfHost (>= 5.2.2)
Newtonsoft.Json (>= 11.0.2)
```
>.NETStandard 1.3
```
NETStandard.Library (>= 1.6.1)
Newtonsoft.Json (>= 11.0.2)
```
>.NETStandard 1.5
```
NETStandard.Library (>= 1.6.1)
Newtonsoft.Json (>= 11.0.2)
```
>.NETStandard 2.0
```
Newtonsoft.Json (>= 11.0.2)
```