Skip to main content
GET
/
v2
/
account
/
account-info
Get Account Info
curl --request GET \
  --url https://api.avenia.io:8443/v2/v2/account/account-info \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "accountInfo": {
    "id": "<string>",
    "accountId": "<string>",
    "accountType": "<string>",
    "country": "<string>",
    "createdAt": "<string>"
  },
  "wallets": [
    {
      "id": "<string>",
      "currency": "<string>",
      "balance": "<string>"
    }
  ],
  "pixKey": "<string>",
  "brCode": "<string>",
  "createdAt": "<string>"
}

Get Account Info

GET request to /v2/account/account-info

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

subAccountId
string

Sub-account ID (if applicable)

Response

OK

id
string
required
accountInfo
object
required
wallets
object[]
required
pixKey
string
required
brCode
string
required
createdAt
string
required