Skip to content

ljm2ya/go-upbit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Upbit-Go

A Golang SDK for Upbit API

Upbit full document is here.

Installation

go get github.com/hannut91/upbit-go

Getting started

package main

import (
	"fmt"

	"github.com/hannut91/upbit-go"
)

func main() {
	client := upbit.NewClient("YourAccessKey", "YourSecretKey")

	markets, err := client.Markets()
	if err != nil {
	    return
	}

	fmt.Println(markets[0].Market) // KRW-BTC
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages