Pave BankPave Bank
Accounts

Get Account

Retrieves the parent account for the given account ID.

GET
/v1/accounts/{accountID}

Authorization

AuthorizationRequiredBearer <token>

Enter your token in the format: Bearer {token}

In: header

Path Parameters

accountIDRequiredstring

Response Body

Success response

account_typeRequiredstring
assetRequiredstring

The currency in which the amount is made (e.g. USD, EUR, SGD)

balance_availableRequiredstring
balance_totalRequiredstring
created_atRequiredstring
Format: "date-time"
ibanRequiredstring
idRequiredstring
nameRequiredstring
sub_accounts_countRequiredinteger
Format: "int64"
sub_accounts_spendable_balanceRequiredstring
sub_accounts_total_balanceRequiredstring
curl -X GET "https://developer-api-staging.pavebank.dev/v1/accounts/string" \
  -H "Authorization: Bearer <token>"
{
  "account_type": "string",
  "asset": "string",
  "balance_available": "string",
  "balance_total": "string",
  "created_at": "2019-08-24T14:15:22Z",
  "iban": "string",
  "id": "string",
  "name": "string",
  "sub_accounts_count": 0,
  "sub_accounts_spendable_balance": "string",
  "sub_accounts_total_balance": "string"
}