> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fintoc.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Account object

Accounts enable you to monitor available balance and execute outbound Transfers.

```json theme={null}
{
  "id": "acc_23JlasHas241",
  "object": "account",
  "available_balance": 23459183,
  "currency": "MXN",
  "description": "My root account",
  "entity": {
    "id": "ent_4324qwkalsds",
    "holder_id": "ND",
    "holder_name": "ACME Inc."
  },
  "is_root": true,
  "mode": "test",
  "root_account_number": "738969123456789120",
  "root_account_number_id": "acno_Kasf91034gj1AD",
  "status": "active"
}
```

| Attribute                | Type      | Description                                                                                                                                                                                                                                      |
| :----------------------- | :-------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`                     | `string`  | Unique identifier for the Account.                                                                                                                                                                                                               |
| `object`                 | `string`  | The type of the object, which is always `account`.                                                                                                                                                                                               |
| `available_balance`      | `integer` | The balance available for outbound Transfers in an Account at a given time.                                                                                                                                                                      |
| `currency`               | `string`  | The currency of the Account balance in ISO format.                                                                                                                                                                                               |
| `description`            | `string`  | A description you can use to easily identify this Account. 40 chars max.                                                                                                                                                                         |
| `entity`                 | `object`  | The Entity the Account belongs to.                                                                                                                                                                                                               |
| `entity.id`              | `string`  | Unique identifier for the Entity.                                                                                                                                                                                                                |
| `entity.holder_id`       | `string`  | Identifier of the owner of the Account. In Chile, it corresponds to a RUT and in Mexico it's either an RFC or CURP.                                                                                                                              |
| `entity.holder_name`     | `string`  | The name of the Account owner.                                                                                                                                                                                                                   |
| `is_root`                | `boolean` | Indicates whether this Account is the main Account. Root Accounts are created automatically and hold your initial Fintoc balance.                                                                                                                |
| `mode`                   | `string`  | Mode of the API (`test` or `live`).                                                                                                                                                                                                              |
| `root_account_number`    | `string`  | The number of the root Account Number related to this Account.                                                                                                                                                                                   |
| `root_account_number_id` | `string`  | The ID of the root Account Number related to this Account.                                                                                                                                                                                       |
| `status`                 | `string`  | Status of the account. It can be `active`, `blocked` or `closed`. `blocked` accounts will not be able to send Transfers. This status can be reversed to active. `closed` accounts cannot receive or send Transfers. This status is irreversible. |
