---
title: "Get Account"
method: GET
path: "/api/v1/savings-goals/accounts/{id}"
tags: ["Finance Management.Savings Goals", "ENTERPRISE"]
---

# Get Account

`GET /api/v1/savings-goals/accounts/{id}`

Get Account by ID from a Savings Goals domain.

## Path parameters

- `id` string, required

## Response `200`

The Account with actual balance and unallocated funds available for Savings Goals to allocate.

- Account — An account model within the Savings Goals domain, that contains the current unallocated amount available to fund a Savings Goal.
  - `balance` Amount — Amount moved with the allocation.
    - `currencyCode` string, required — The ISO 4217 currency code of the amount
    - `scale` integer, required — The scale of the amount. <br/>The `unscaledValue` is used with `scale` to accurately represent floating point values. <br/>The formula is `unscaledValue * (10^-scale)`. For example, if scale is 1 and unscaledValue is 1230, the end result would be 123.0.
    - `unscaledValue` integer, required — The unscaled value of the amount. <br/>The `unscaledValue` is used with `scale` to accurately represent floating point values. <br/>The formula is `unscaledValue * (10^-scale)`. For example, if scale is 1 and unscaledValue is 1230, the end result would be 123.0.
  - `id` string — The ID of the Account.
  - `name` string — The name of the Account.
  - `unallocatedFunds` Amount — Amount moved with the allocation.
    - `currencyCode` string, required — The ISO 4217 currency code of the amount
    - `scale` integer, required — The scale of the amount. <br/>The `unscaledValue` is used with `scale` to accurately represent floating point values. <br/>The formula is `unscaledValue * (10^-scale)`. For example, if scale is 1 and unscaledValue is 1230, the end result would be 123.0.
    - `unscaledValue` integer, required — The unscaled value of the amount. <br/>The `unscaledValue` is used with `scale` to accurately represent floating point values. <br/>The formula is `unscaledValue * (10^-scale)`. For example, if scale is 1 and unscaledValue is 1230, the end result would be 123.0.

## Other responses

- `401` — If the user is not authorized.
- `404` — Account not found.

---

[API](https://skmtc.net/tink/apis/tink-api.md) · [All operations](https://skmtc.net/tink/apis/tink-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tink/tink-api/revisions/23d8982b533d/schema)
