Skip to main content
GET
/
v1
/
account
GetAccount
curl --request GET \
  --url https://api.nitrotranslate.com/v1/account \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": 123,
  "balance_overdraft_allowed": true,
  "reserved": 123,
  "balance": 123
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json

Success

Account balance information.

id
balance_overdraft_allowed
boolean

Whether the account is allowed to go into overdraft.

reserved
number<double>

Funds currently reserved by in-flight orders, in US dollars.

balance
number<double>

Available balance, in US dollars.