---
title: "Get an account"
method: GET
path: "/v1/accounts/{id}"
tags: ["Accounts"]
---

# Get an account

`GET /v1/accounts/{id}`

Returns information about a specific account (personal or business).

## Path parameters

- `id` string, required

## Response `200`

The operation was successful.

- union
  - AccountPerson
    - `id` string — ID of the account.
    - `iban` string — IBAN associated with the account.
    - `bic` string — BIC associated with the account.
    - `type` 'CHECKING_PERSONAL' | 'CHECKING_BUSINESS' — Type of the account.
    - `currency` string — Currency of the account.
    - `overdraft` Overdraft
      - `rate` number
      - `limit` integer
    - `balance` object — The current account balance. Value is in Euro cents.
      - `value` integer
      - `unit` string
      - `currency` string
    - `available_balance` object — The current account balance including reservations that have not yet been booked. Value is in Euro cents.
      - `value` integer
      - `unit` string
      - `currency` string
    - `locking_status` 'NO_BLOCK' | 'CREDIT_BLOCK' | 'DEBIT_BLOCK' | 'BLOCK' — Read-only booking block indicating whether funds can be transferred to/from the account. The default status is `NO_BLOCK`. Other status values indicate that funds may neither be credited to, nor debited from, the account. Only authorized Solaris employees can change the status of this value. Attempting to perform an action not compliant with the current blocking status (e.g., initiating a transaction to or from a blocked account) will cause either a return of the transaction or an exception.
    - `locking_reasons` string[] — Read-only indicator of the reason a block was applied to the account. If the account is not blocked, then this value will contain an empty array.
    - `account_limit` object — The allowed amount of negative balance on the account. This is included into the calculation of the `available_balance`.
      - `value` integer
      - `unit` string
      - `currency` string
    - `person_id` string — ID of the person for whom the account was created.
    - `opened_at` string — Date and time when the account was opened (UTC format).
    - `status` 'ACTIVE' | 'INACTIVE' — Status of the account.
    - `closed_at` string — Date and time when the account was closed (UTC format).
  - AccountBusiness
    - `id` string — ID of the account.
    - `iban` string — IBAN associated with the account.
    - `bic` string — BIC associated with the account.
    - `type` 'CHECKING_PERSONAL' | 'CHECKING_BUSINESS' — Type of the account.
    - `currency` string — Currency of the account.
    - `overdraft` Overdraft
      - `rate` number
      - `limit` integer
    - `balance` object — The current account balance. Value is in Euro cents.
      - `value` integer
      - `unit` string
      - `currency` string
    - `available_balance` object — The current account balance including reservations that have not yet been booked. Value is in Euro cents.
      - `value` integer
      - `unit` string
      - `currency` string
    - `locking_status` 'NO_BLOCK' | 'CREDIT_BLOCK' | 'DEBIT_BLOCK' | 'BLOCK' — Read-only booking block indicating whether funds can be transferred to/from the account. The default status is `NO_BLOCK`. Other status values indicate that funds may neither be credited to, nor debited from, the account. Only authorized Solaris employees can change the status of this value. Attempting to perform an action not compliant with the current blocking status (e.g., initiating a transaction to or from a blocked account) will cause either a return of the transaction or an exception.
    - `locking_reasons` string[] — Read-only indicator of the reason a block was applied to the account. If the account is not blocked, then this value will contain an empty array.
    - `account_limit` object — The allowed amount of negative balance on the account. This is included into the calculation of the `available_balance`.
      - `value` integer
      - `unit` string
      - `currency` string
    - `business_id` string — ID of the business for whom the account was created. Only filled if the account owner is a legal entity.
    - `opened_at` string — Date and time when the account was opened (UTC format).
    - `status` 'ACTIVE' | 'INACTIVE' — Status of the account.
    - `closed_at` string — Date and time when the account was closed (UTC format).

## Other responses

- `400` — An error occurred on the client side.
- `404` — The account could not be found.
- `500` — Internal server error.
- `default` — Unexpected error

---

[API](https://skmtc.net/solarisgroup/apis/account-management.md) · [All operations](https://skmtc.net/solarisgroup/apis/account-management/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/solarisgroup/account-management/revisions/099ef636a5a1/schema)
