https://github.com/mclintprojects/go-coinbase
Coinbase Golang APIv2 Library
https://github.com/mclintprojects/go-coinbase
Last synced: 5 months ago
JSON representation
Coinbase Golang APIv2 Library
- Host: GitHub
- URL: https://github.com/mclintprojects/go-coinbase
- Owner: mclintprojects
- License: gpl-3.0
- Fork: true (zauberstuhl/go-coinbase)
- Created: 2020-07-31T05:50:15.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-31T06:37:35.000Z (almost 6 years ago)
- Last Synced: 2024-06-20T02:01:28.170Z (almost 2 years ago)
- Language: Go
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Coinbase Golang API Library
[](https://travis-ci.org/Zauberstuhl/go-coinbase)
[](http://godoc.org/github.com/Zauberstuhl/go-coinbase)
[](https://codecov.io/gh/Zauberstuhl/go-coinbase)
The library was tested against coinbase.com APIv2
## Installation
go get github.com/Zauberstuhl/go-coinbase
# or use gopkg for specific versions
go get gopkg.in/Zauberstuhl/go-coinbase.v1.0.0
## Supported API Calls
* Wallet Endpoints
- [x] Users
- [x] Accounts
- [x] Addresses
- [x] Transactions
- [x] Buys
- [x] Sells
- [x] Deposits
- [x] Withdrawals
- [x] Payment methods
* Data Endpoints
- [x] Currencies
- [x] Exchange rates
- [x] Prices
- [x] Time
## Example
import "github.com/Zauberstuhl/go-coinbase"
c := coinbase.APIClient{
Key: "123",
Secret: "123456",
}
acc, err := c.Accounts()
if err != nil {
fmt.Println(err)
return
}
for _, acc := range acc.Data {
fmt.Printf("ID: %s\nName: %s\nType: %s\nAmount: %f\nCurrency: %s\n",
acc.Id, acc.Name, acc.Type,
acc.Balance.Amount, acc.Balance.Currency)
}
# sample output
ID: 1234-12-1234-1232
Name: Test Wallet
Type: BTC
Amount: 0.0
Currency: EUR
[...]
## Unit Tests
Run all available unit tests via:
go test
Most of the tests require a internet connection!