Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Go client library for interacting with Coinpaprika's API

License

NotificationsYou must be signed in to change notification settings

coinpaprika/coinpaprika-api-go-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Statusgo-docGo Report Card

Usage

This library provides convenient way to usecoinpaprika.com API in Go.

Coinpaprika delivers full market data to the world of crypto: coin prices, volumes, market caps, ATHs, return rates and more.

Getting started

package mainimport ("fmt""github.com/coinpaprika/coinpaprika-api-go-client/coinpaprika")funcmain() {paprikaClient:=coinpaprika.NewClient(nil)tickers,err:=paprikaClient.Tickers.List(nil)iferr!=nil {panic(err)}for_,t:=rangetickers {ift.Name==nil||t.Symbol==nil||t.Rank==nil {continue}fmt.Println("Name:",*t.Name)fmt.Println("Symbol:",*t.Symbol)fmt.Println("Rank:",*t.Rank)fmt.Println("----")}}

Setting custom HTTP client

customClient:=&http.Client{Timeout:10*time.Second}paprikaClient:=coinpaprika.NewClient(customClient)

Setting API key for and enabling access to Coinpaprika Pro API

Key can be obtained fromCoinpaprika API

paprikaClient:=coinpaprika.NewClient(nil,coinpaprika.WithAPIKey("your_api_key_goes_here"))

Examples

Check out the./examples directory.

Implementation status

Global

  • Get market overview data

Coins

  • List coins
  • Get coin by ID
  • Get twitter timeline for coin
  • Get coin events by coin ID
  • Get exchanges by coin ID
  • Get markets by coin ID
  • Get latest OHLCV
  • Get historical OHLCV

People

  • Get people by ID

Tags

  • List tags
  • Get tag by ID

Tickers

  • Get tickers for all coins
  • Get ticker information for specific coin
  • Get historical tickers for specific coin

Exchanges

  • List exchanges
  • Get exchange by ID
  • List markets by exchange ID

Search

  • Search tool

Price Converter

  • Price converter

License

CoinpaprikaAPI is available under the MIT license. See theLICENSE file for more info.

About

Go client library for interacting with Coinpaprika's API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors8


[8]ページ先頭

©2009-2025 Movatter.jp