Bank Account Details

Overview

In order to retrieve account details, you will first need to have a user successfully complete the bank authentication flow. You will also need to have the user's connectionid to retrieve bank account details.

Retrieve an Account's Details

HTTP Request

Sandbox - GET [https://api.sandbox.aerosync.com/v2/accounts/{{connectionId}}

Production - GET [http://api.aerosync.com/v2/accounts/{{connectionId}}

Request Parameters

ParameterRequired?TypeDescription
connectionIdYesStringAerosync-specific connectionId received from the SDK onSuccess

Request and Response

GET http://api.sandbox.aerosync.com/v2/accounts/{{connectionid}} 
Authorization: Bearer {{token}}

{
    "status": "success",
    "statusCode": 200,
    "account": {
        "accountNickname": "Aerosync Test Bank",
        "accountNumber": "00100000987654321",
        "routingNumber": "000000111",
        "accountNumberDisplay": "2901",
        "accountNumberType": "Tokenized",
        "accountType": "CHECKING",
        "bankName": "Test Checking",
        "canFetchBalance": true,
        "connectionMethod": 6,
        "connectionStatus": "CONNECTED",
        "connectionExpiry": "2026-01-02T15:47:48Z"
    }
}