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

# Institution object

An Institution represents a financial institution available through the Fintoc API, along with its supported products and account holder types.

```json theme={null}
[
  {
    "id": "cl_banco_santander",
    "country": "cl",
    "name": "Banco Santander",
    "object_name": "institution",
    "products": [
      {
        "holder_type": "individual",
        "name": "payments"
      },
      {
        "holder_type": "individual",
        "name": "subscription"
      },
      {
        "holder_type": "individual",
        "name": "movements"
      },
      {
        "holder_type": "business",
        "name": "movements"
      }
    ],
    "type": "bank"
  },
  {
    "id": "cl_banco_security",
    "country": "cl",
    "name": "Banco Security",
    "object_name": "institution",
    "products": [
      {
        "holder_type": "business",
        "name": "payouts"
      },
      {
        "holder_type": "business",
        "name": "movements"
      },
      {
        "holder_type": "individual",
        "name": "payments"
      }
    ],
    "type": "bank"
  },
  {
    "id": "cl_banco_internacional",
    "country": "cl",
    "name": "Banco Internacional",
    "object_name": "institution",
    "products": [
      {
        "holder_type": "individual",
        "name": "payments"
      }
    ],
    "type": "bank"
  }
]
```

| Attribute     | Type                 | Description                                                                                                                                                                                                                                                                                                       |
| :------------ | :------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`          | `string`             | Unique identifier for the financial institution. It starts with the country code of the institution. For example, `cl_banco_santander`.                                                                                                                                                                           |
| `object_name` | `string`             | Identifier for the type of object. Its value for an `Institution` will always correspond to `institution`                                                                                                                                                                                                         |
| `country`     | `string`             | Identifier for the country of the institution. Available countries are `cl` and `mx`.                                                                                                                                                                                                                             |
| `name`        | `string`             | The official name of the institution.                                                                                                                                                                                                                                                                             |
| `products`    | `array` of `objects` | The available products of the institution. Each product has a `name` key, which corresponds to the name of the product (`payments`, `movements`, `subscription`, `tax_returns`, `income`, `charges`). It also has a `holder_type` key, which indicates the type of accounts available (`individual`, `business`). |
| `type`        | `string`             | The type of financial institution. Available types are `bank` and `fiscal_authority`.                                                                                                                                                                                                                             |
