Sample code for 30+ languages & platforms
Lianja

Bitfinex v2 REST User Info

See more Bitfinex v2 REST Examples

Retrieve the user ID, email, username and timezone setting for the account associated with the API key used.

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loHttp = createobject("CkHttp")

// Implements the following CURL command:

// curl -X POST -H "bfx-nonce: nonce" \
//   -H "bfx-apikey: apiKey" \
//   -H "bfx-signature: sig" \ 
//   https://api.bitfinex.com/v2/auth/r/info/user

// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code

loCrypt = createobject("CkCrypt2")

lcApiPath = "v2/auth/r/info/user"
lcApiKey = "MY_API_KEY"
lcApiSecret = "MY_API_SECRET"

loDt = createobject("CkDateTime")
loDt.SetFromCurrentSystemTime()

loSbNonce = createobject("CkStringBuilder")
loSbNonce.Append(loDt.GetAsUnixTimeStr(.F.))
loSbNonce.Append("000")
lcNonce = loSbNonce.GetAsString()

// This particular request has an empty body.
lcBody = ""

loSbSignature = createobject("CkStringBuilder")
loSbSignature.Append("/api/")
loSbSignature.Append(lcApiPath)
loSbSignature.Append(lcNonce)
loSbSignature.Append(lcBody)

loCrypt.EncodingMode = "hex_lower"
loCrypt.HashAlgorithm = "sha384"
loCrypt.MacAlgorithm = "hmac"
loCrypt.SetMacKeyString(lcApiSecret)

lcSig = loCrypt.MacStringENC(loSbSignature.GetAsString())

loHttp.SetRequestHeader("bfx-apikey",lcApiKey)
loHttp.SetRequestHeader("bfx-signature",lcSig)
loHttp.SetRequestHeader("bfx-nonce",lcNonce)

loResp = createobject("CkHttpResponse")
llSuccess = loHttp.HttpNoBody("POST","https://api.bitfinex.com/v2/auth/r/info/user",loResp)
if (llSuccess = .F.) then
    ? loHttp.LastErrorText
    release loHttp
    release loCrypt
    release loDt
    release loSbNonce
    release loSbSignature
    release loResp
    return
endif

? "Response body:"
? loResp.BodyStr

// Sample response body:

// [1234567,"joe@example.com","joe_trader",1527691729000,0,null,null,"Central Time (US & Canada)"]


release loHttp
release loCrypt
release loDt
release loSbNonce
release loSbSignature
release loResp