Skip to content

Get current API key info

GET
/v1/account/api-keys/current

Returns the current API Key's information and permissions. This information includes the label, date created, and permissions. Permission levels are View Access, Trade, or Withdraw. If an API key has Whitelisted IP address ranges or Whitelisted Withdrawal addresses, the IP addresses and Currency withdrawal addresses will also be returned.

Authorizations

apiKey

Your API key

Type
API Key (header: X-VALR-API-KEY)
+
apiSignature

HMAC SHA512 signature of the request (see Authentication section)

Type
API Key (header: X-VALR-SIGNATURE)
+
apiTimestamp

Request timestamp in milliseconds

Type
API Key (header: X-VALR-TIMESTAMP)

Responses

API key info retrieved successfully

application/json
JSON
{
"label": "Full Access Whitelisted IP and Address",
"permissions": [
"View access",
"Trade",
"Withdraw"
],
"addedAt": "2021-09-11T18:28:37.791401Z",
"allowedIpAddressCidr": "41.157.66.231/32",
"allowedWithdrawAddressList": [
{
"currency": "BTC",
"address": "2N1QAxqSn2B3CiHsLSzeReuysQXyCT8ZXWj"
}
]
}

Playground

Authorization

Samples