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

# Get account

`GET /accounts/{account_id}`

Retrieves account details for a given `account_id`.

## Path parameters

- `account_id` string, uuid, required

## Headers

- `X-SCX-SIGNED` string, required
- `X-SCX-TIMESTAMP` string, required

## Response `200`

Successfully retrieved account details including balance, owner, and account type

- GetAccountResponse — Response schema for retrieving a specific account information.
  - `message` AccountsResponseEntity
    - `asset` string — The asset code for the specific account, e.g. `USD`
    - `account_owner` string — The code of the participant that owns the account
    - `account_type` 'available' | 'collateral' | 'payable' | 'receivable' | 'collateral_deficiency' | 'staked' — The type of the account (balance bucket).
    - `account_group` string — The group that the account is a part of
    - `account_label` string — The account label associated with the account
    - `balance` string — The balance in the account
    - `account_id` string, uuid — Unique ID of the specific account
    - `last_update` number — Timestamp when the account balance was updated (Unix milliseconds)

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error
- `503` — Service Unavailable

---

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