All Projects → lucazulian → cryptocomparego

lucazulian / cryptocomparego

Licence: MIT License
Cryptocompare Golang API client

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to cryptocomparego

crypto-news
Crypto News allows you to convert cryptocurrencies, view latest news and exchange rates for each ICO – all the data from the world of cryptocurrencies in one place.
Stars: ✭ 26 (+100%)
Mutual labels:  cryptocompare, cryptocompare-api
cryptocompare
Python3 Wrapper for the CryptoCompare API
Stars: ✭ 147 (+1030.77%)
Mutual labels:  cryptocompare
crypto compare
CryptoCompare.com API client for Python
Stars: ✭ 28 (+115.38%)
Mutual labels:  cryptocompare

Build Status License: MIT GoDoc Go Report Card Coverage Status Average time to resolve an issue Percentage of issues still open

Cryptocomparego

Cryptocomparego is a Golang client library for accessing the Cryptocompare API.

You can view the client API docs here: http://godoc.org/github.com/lucazulian/cryptocomparego

You can view Cryptocompare API docs here: https://www.cryptocompare.com/api/

Usage

import "github.com/lucazulian/cryptocomparego"

Examples

To get general info for all the coins available:

ctx := context.TODO()

client := cryptocomparego.NewClient(nil)
coinList, _, err := client.Coin.List(ctx)

if err != nil {
    fmt.Printf("Something bad happened: %s\n", err)
    return err
}

Contributing

We love pull requests! Please see the contribution guidelines.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].