github.com/bitfinexcom/bitfinex-api-go@v0.0.0-20210608095005-9e0b26f200fb/v1/doc.go (about)

     1  package bitfinex
     2  
     3  // Package bitfinex-api-go provides structs and functions for accessing
     4  // bitfinex.com api version 1.0
     5  //
     6  // Usage:
     7  //   import "github.com/bitfinexcom/bitfinex-api-go"
     8  //
     9  // Create new client:
    10  //   api := bitfinex.NewClient()
    11  //
    12  // For access methods that requires authentication use the next code:
    13  //   api := bitfinex.NewClient().Auth(key, secret)
    14  //
    15  // Get all pairs
    16  //   api.Pairs.All()
    17  //
    18  // Get account info
    19  //   api.Account.Info()
    20  //
    21  // See examples dir for more info.