Unofficial Kucoin API implementation written on Golang.
- 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
go get -u github.com/eeonevision/kucoin-gopackage main
import (
"github.com/eeonevision/kucoin-go"
)
func main() {
// Set your own API key and secret
k := kucoin.New("API_KEY", "API_SECRET")
// Call resource
k.GetCoinBalance("BTC")
}| 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 | β |
Your β Star will be best donation to my work)