> For the complete documentation index, see [llms.txt](https://docs.calypso.money/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.calypso.money/accounts/how-to-get-balances-for-a-specific-account.md).

# How to get Balances for a specific Account

To retrieve the balances for a specific account, use the [**`POST /api/v1/account`**](https://docs.calypso.money/api-reference/account-api) method (or the appropriate endpoint as defined in your API).

This method returns a list of all currencies and their corresponding balances held within the specified account.

#### **Request**

```
{
    "account": "123e4567-e89b-12d3-a456-426614174000",
    "timestamp": 1743110400000
}
```

* **`account`** (string, required): The unique identifier of the account for which to retrieve balances.
* **`timestamp`** (integer, int64, required): Current Unix timestamp in milliseconds (UTC). The value must be within 3 minutes of the server's current time.

#### **Response&#x20;**<mark style="color:green;">**(200 OK)**</mark>

```
{
  "account": "123e4567-e89b-12d3-a456-426614174000",
  "name": "Test Account",
  "ownerId": "987fcdeb-51a2-43d7-9b8c-234567890abc",
  "balances": [
    {
      "currency": "USDT_TRX",
      "amount": 1500.75
    },
    {
      "currency": "BTC",
      "amount": 0.025
    },
    {
      "currency": "ETH",
      "amount": 1.5
    }
  ]
}
```

**Response Field Descriptions:**

| Field                 | Type          | Description                                            |
| --------------------- | ------------- | ------------------------------------------------------ |
| `account`             | string        | The unique identifier of the account                   |
| `name`                | string        | The display name of the account                        |
| `ownerId`             | string (UUID) | The unique identifier of the user who owns the account |
| `balances`            | array         | A list of currency balances held in the account        |
| `balances[].currency` | string        | The currency code (e.g., `USDT_TRX`, `BTC`, `ETH`)     |
| `balances[].amount`   | number        | The balance amount for the specified currency          |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.calypso.money/accounts/how-to-get-balances-for-a-specific-account.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
