Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 2 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-19T20:58:26.000Z (about 6 years ago)
- Last Synced: 2024-11-07T11:48:08.437Z (2 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: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CryptoCompare-Api [![Build status](https://ci.appveyor.com/api/projects/status/iaccxxc7mb6us3yl/branch/master?svg=true)](https://ci.appveyor.com/project/tosunthex/cryptocompare-api/branch/master) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/e3355681d430459aa12e37221929d9e7)](https://www.codacy.com/app/tosunthex/CryptoCompare-Api?utm_source=github.com&utm_medium=referral&utm_content=tosunthex/CryptoCompare-Api&utm_campaign=Badge_Grade) [![NuGet](https://img.shields.io/nuget/v/CryptoCompareAsyncApi.svg)](https://www.nuget.org/packages/CryptoCompareAsyncApi/)[![NuGet](https://img.shields.io/nuget/dt/CryptoCompareAsyncApi.svg)](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)
```