Skip to content

hannut91/upbit-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 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

Upbit exchange api wrapper in golang

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages