> For the complete documentation index, see [llms.txt](https://openapi-docs.nagaexchange.co.id/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://openapi-docs.nagaexchange.co.id/rest-api-spot-trading/account.md).

# Account

{% hint style="info" %}
**Account** section requires API-key and signature for access. See [Authentication](/authentication.md) for signing details.
{% endhint %}

***

## Account Information

<mark style="color:blue;">`GET`</mark> `https://openapi.nagaexchange.co.id/sapi/v1/account`

**Rate Limit**: 20 times/2s

#### Headers

| Name                                          | Type    | Description  |
| --------------------------------------------- | ------- | ------------ |
| X-CH-SIGN<mark style="color:red;">\*</mark>   | string  | Sign         |
| X-CH-APIKEY<mark style="color:red;">\*</mark> | string  | User API-KEY |
| X-CH-TS<mark style="color:red;">\*</mark>     | integer | Timestamp    |

{% tabs %}
{% tab title="200 Successfully obtained account information" %}

```json
{
    "balances": [
        {
            "asset": "ABAT",
            "free": "10.00",
            "locked": "20.00"
        },
        {
            "asset": "DOT",
            "free": "10.00",
            "locked": "10.00"
        },
        {
            "asset": "TT",
            "free": "50.00",
            "locked": "50.00"
        }
    ]
}
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="Response:" %}

| Parameter    | Type | Describe                           |
| ------------ | ---- | ---------------------------------- |
| `balances`   | `[]` | The collection of account balances |
| {% endtab %} |      |                                    |

{% tab title="Balances field:" %}

<table><thead><tr><th width="178">Parameter</th><th width="150">Type</th><th width="179">Example</th><th>Describe</th></tr></thead><tbody><tr><td><code>asset</code></td><td>string</td><td><code>USDT</code></td><td>Coin name</td></tr><tr><td><code>free</code></td><td>float</td><td>1000.30</td><td>Account available amount</td></tr><tr><td><code>locked</code></td><td>float</td><td>400</td><td>Account frozen amount</td></tr></tbody></table>
{% endtab %}
{% endtabs %}


---

# 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, and the optional `goal` query parameter:

```
GET https://openapi-docs.nagaexchange.co.id/rest-api-spot-trading/account.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
