> ## 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.

# The Entity object

An `Entity` represents the legal owner of your accounts. It defines the ownership and identity information used in transfers. The `Entity` has the following attributes:

| Attribute     | Type      | Description                                                                  |
| :------------ | :-------- | :--------------------------------------------------------------------------- |
| `id`          | `string`  | Unique identifier for the `Entity`.                                          |
| `object`      | `string`  | Type of object, always `entity`.                                             |
| `holder_id`   | `string`  | Unique identifier for the entity's legal owner.                              |
| `holder_name` | `string`  | Legal name of the entity's owner.                                            |
| `is_root`     | `boolean` | If `true`, the `Entity` is the main entity in your organization's structure. |
| `mode`        | `string`  | API mode for the `Entity`. One of `test` or `live`.                          |

```json theme={null}
{
  "id": "ent_4324qwkalsds",
  "object": "entity",
  "holder_id": "000000000",
  "holder_name": "ACME Inc.",
  "is_root": true,
  "mode": "test"
}
```
