Use this to retrieve the details of a specific account. This request will return back an account object with the latest data since the last refresh. If you require the latest account details you will need to call the connection refresh resource.

Arguments

id
string, required

The identifier of the account to be retrieved.

Returns

Returns an account if a valid account ID was provided. Returns an error otherwise.

GET /users/{user.id}/accounts/{account.id}
GET /users/ea3a81/accounts/s55bf3 HTTP/1.1
Authorization: Bearer YOUR_ACCESS_TOKEN
HTTP/1.11.1 200 OK
Content-TypeContent-Type::  application/jsonapplication/json

{
  "type": "account",
  "id": "s55bf3",
  "accountNo": "34567834567890",
  "name": "Savings 123890",
  "currency": "AUD",
  "balance": "26978.76",
  "availableFunds": "26978.76",
  "lastUpdated": "2019-09-28T13:39:33Z",
  "class": {
    "type": "savings",
    "product": "Hooli Saver"
  },
  "transactionIntervals": [
    {
      "from": "2019-04-30",
      "to": "2021-01-08"
    }
  ],
  "status": "available",
  "institution": "AU00000",
  "accountHolder": "Max Wentworth-Smith",
  "connection": "8fce3b",
  "links": {
    "self": "https://au-api.basiq.io/users/ea3a81/accounts/s55bf3",
    "transactions": "https://au-api.basiq.io/users/ea3a81/transactions?filter=account.id.eq('s55bf3')",
    "connection": null,
    "institution": "https://au-api.basiq.io/institutions/AU00000"
  }
}