> For the complete documentation index, see [llms.txt](https://developer.ecall-messaging.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.ecall-messaging.com/api-references/rest-api/account-balance.md).

# Account balance

Retrieve the current point balance for an eCall account.

Use `/account/balance` to retrieve the current point balance.

**Endpoint:** `/account/balance`

Authentication uses [REST API](/api-references/rest-api.md).

### Response structure

The response is JSON.

```json
{
  "accountRef": 0,
  "accountName": "",
  "balance": 0,
  "timestamp": "",
  "timestampUtc": ""
}
```

| Field          | Description               |
| -------------- | ------------------------- |
| `accountRef`   | Account reference         |
| `accountName`  | Account name              |
| `balance`      | Current point balance     |
| `timestamp`    | Response timestamp        |
| `timestampUtc` | Response timestamp in UTC |
