Skip to content

fiore/kucoin-go

 
 

Repository files navigation

Kucoin REST-API Golang

Build Status GoDoc Go Report Card License

Unofficial Kucoin API implementation written on Golang.

Features

  • Ready to go solution. Just import the package
  • The most needed methods are implemented
  • Simple authorization handling
  • Pure and stable code
  • Built-in Golang performance

How to use

go get -u github.com/fiore/kucoin-go
package main

import (
	"github.com/fiore/kucoin-go"
)

func main() {
	// Set your own API key and secret
	k := kucoin.New("API_KEY", "API_SECRET")
	// Call resource
	k.GetCoinBalance("BTC")
}

Checklist

API Resource Type Done
Tick (symbols) Open
Get coin info Open
List coins Open
Tick (symbols) for logged user Auth
Get coin deposit address Auth
Get balance of coin Auth
Create an order Auth
Get user info Auth
List active orders (Both map and array) Auth
List deposit & withdrawal records Auth
List dealt orders (Both Specific and Merged) Auth
Order details Auth
Create withdrawal apply Auth
Cancel withdrawal Auth
Cancel orders Auth
Cancel all orders Auth
Order books Auth

Donate

Your ★Star will be best donation to my work

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%