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

# Entity object

Entities serve as the legal proprietors of your Accounts and establish ownership definitions plus identity parameters in Transfers.

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

| Attribute     | Type      | Description                                                                           |
| :------------ | :-------- | :------------------------------------------------------------------------------------ |
| `id`          | `string`  | Unique identifier for the Entity.                                                     |
| `object`      | `string`  | The type of the object, which is always `entity`.                                     |
| `holder_id`   | `string`  | The unique ID of the entity owner.                                                    |
| `holder_name` | `string`  | The legal name of the entity owner.                                                   |
| `is_root`     | `boolean` | Indicates whether this Entity is the main Entity within the organization's structure. |
| `mode`        | `string`  | Mode of the API (`test` or `live`).                                                   |
