All Projects → beldur → Kraken Go Api Client

beldur / Kraken Go Api Client

Licence: mit
Example client library in GO for use with the kraken.com API.

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Kraken Go Api Client

Blockchain Anchor
A Node.js library for anchoring data onto the Bitcoin blockchain and confirming anchored data on Bitcoin and Ethereum.
Stars: ✭ 32 (-81.71%)
Mutual labels:  api-client, bitcoin
Goex
Exchange Rest And WebSocket API For Golang Wrapper support okcoin,okex,huobi,hbdm,bitmex,coinex,poloniex,bitfinex,bitstamp,binance,kraken,bithumb,zb,hitbtc,fcoin, coinbene
Stars: ✭ 1,188 (+578.86%)
Mutual labels:  bitcoin, kraken
Siis
Trading bot including terminal, for crypto and traditionals markets. Assisted or fully automated strategy.
Stars: ✭ 45 (-74.29%)
Mutual labels:  bitcoin, kraken
Cryptofeed
Cryptocurrency Exchange Websocket Data Feed Handler
Stars: ✭ 643 (+267.43%)
Mutual labels:  bitcoin, kraken
Orko
Trade on and script multiple crypto exchanges from a single user interface on desktop and mobile. In development.
Stars: ✭ 128 (-26.86%)
Mutual labels:  bitcoin, kraken
Bitcoinexchangefh
Cryptocurrency exchange market data feed handler
Stars: ✭ 871 (+397.71%)
Mutual labels:  bitcoin, kraken
Xchange.js
Bitcoin and Altcoin exchange api aggregator / wrapper
Stars: ✭ 74 (-57.71%)
Mutual labels:  bitcoin, kraken
Coinapi Sdk
SDKs for CoinAPI
Stars: ✭ 238 (+36%)
Mutual labels:  api-client, bitcoin
Pykrakenapi
A python implementation of the Kraken API.
Stars: ✭ 124 (-29.14%)
Mutual labels:  api-client, kraken
Coinbase Pro Node
Coinbase Pro API written in TypeScript and covered by tests.
Stars: ✭ 116 (-33.71%)
Mutual labels:  api-client, bitcoin
Python3 Krakenex
REST Exchange API for Kraken.com, Python 3
Stars: ✭ 523 (+198.86%)
Mutual labels:  api-client, kraken
My Token
📈Track token prices of your favorite exchanges in terminal!
Stars: ✭ 141 (-19.43%)
Mutual labels:  bitcoin, kraken
Exchangesharp
ExchangeSharp is a powerful, fast and easy to use .NET/C# API for interfacing with many crypto currency exchanges. REST and web sockets are supported.
Stars: ✭ 489 (+179.43%)
Mutual labels:  bitcoin, kraken
Currencyviewer
Short python framework that dynamically displays and converts the cryptocurrencies in your Kraken wallet into equivalents fiat money.
Stars: ✭ 13 (-92.57%)
Mutual labels:  bitcoin, kraken
Algo Coin
Python library for algorithmic trading cryptocurrencies across multiple exchanges
Stars: ✭ 365 (+108.57%)
Mutual labels:  bitcoin, kraken
Python2 Krakenex
(UNMAINTAINED) REST Exchange API for Kraken.com, Python 2
Stars: ✭ 72 (-58.86%)
Mutual labels:  api-client, kraken
Twitch4j
Modular Async/Sync/Reactive Twitch API Client / IRC Client
Stars: ✭ 209 (+19.43%)
Mutual labels:  api-client, kraken
Php Bitcoinrpc
Fully unit-tested Bitcoin JSON-RPC client based on GuzzleHttp.
Stars: ✭ 231 (+32%)
Mutual labels:  api-client, bitcoin
Crypto vba
An Excel/VBA project to communicate with various cryptocurrency exchanges APIs
Stars: ✭ 103 (-41.14%)
Mutual labels:  bitcoin, kraken
Coinnect
Coinnect is a Rust library aiming to provide a complete access to main crypto currencies exchanges via REST API.
Stars: ✭ 130 (-25.71%)
Mutual labels:  bitcoin, kraken

Kraken GO API Client

build status

A simple API Client for the Kraken Trading platform.

Example usage:

package main

import (
	"fmt"
	"log"

	"github.com/beldur/kraken-go-api-client"
)

func main() {
	api := krakenapi.New("KEY", "SECRET")
	result, err := api.Query("Ticker", map[string]string{
		"pair": "XXBTZEUR",
	})

	if err != nil {
		log.Fatal(err)
	}

	fmt.Printf("Result: %+v\n", result)

	// There are also some strongly typed methods available
	ticker, err := api.Ticker(krakenapi.XXBTZEUR)
	if err != nil {
		log.Fatal(err)
	}

	fmt.Println(ticker.XXBTZEUR.OpeningPrice)
}

Contributors

  • Piega
  • Glavic
  • MarinX
  • bjorand
  • khezen
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].