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

# List entities

> Lists the entities of your organization for the mode (`live` or `test`) of the API key used. An entity is a legal holder of accounts and defines ownership and identity in Transfers. The list is paginated. Use the `starting_after`, `ending_before`, and `limit` query parameters to move through the list. The `Link` response header carries the URLs to navigate the paginated list.

**`v2`** · Base URL `https://api.fintoc.com/v2`


## OpenAPI

````yaml reference/pacioli-api.json GET /entities
openapi: 3.1.0
info:
  title: Fintoc API
  version: v2026-02-01
servers:
  - url: https://api.fintoc.com/v2
security: []
paths:
  /entities:
    get:
      tags:
        - Entities
      summary: List entities
      description: >-
        Lists the entities of your organization for the mode (`live` or `test`)
        of the API key used. An entity is a legal holder of accounts and defines
        ownership and identity in Transfers. The list is paginated. Use the
        `starting_after`, `ending_before`, and `limit` query parameters to move
        through the list. The `Link` response header carries the URLs to
        navigate the paginated list.
      operationId: entities-list
      parameters:
        - name: starting_after
          in: query
          required: false
          schema:
            type: string
            example: ent_2rNxBkOrlHoOYsZTyQYhA0o8Ek0
          description: >-
            Cursor that fetches the next page of entities. Use the ID of the
            last entity from the current page.
        - name: ending_before
          in: query
          required: false
          schema:
            type: string
            example: ent_2rNxBkOrlHoOYsZTyQYhA0o8Ek0
          description: >-
            Cursor that fetches the previous page of entities. Use the ID of the
            first entity from the current page.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            example: 50
          description: >-
            Maximum number of entities to return per page. Ranges from `1` to
            `300`. Defaults to `30`.
      responses:
        '200':
          description: List of entities for the current mode.
          headers:
            Link:
              schema:
                type: string
              description: URLs to navigate the paginated list, as defined by RFC 8288.
          content:
            application/json:
              examples:
                entities_list:
                  value:
                    - id: ent_2daFu0zqqDtZGJaSi2TGI2Mm1nN
                      object: entity
                      holder_id: AAA010101AAA
                      holder_name: Test Entity 1
                      is_root: true
                      mode: test
                      status: operational
                      country_code: mx
                    - id: ent_2rNxBkOrlHoOYsZTyQYhA0o8Ek0
                      object: entity
                      holder_id: XEXX010101000
                      holder_name: Test Entity 2
                      is_root: false
                      mode: test
                      status: operational
                      country_code: us
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/entity'
        '401':
          description: Invalid or missing API key.
          content:
            application/json:
              examples:
                invalid_api_key:
                  value:
                    error:
                      type: authentication_error
                      code: invalid_api_key
                      message: 'Invalid API Key: invalid-*oken'
              schema:
                $ref: '#/components/schemas/error_object'
      security:
        - api_key: []
components:
  schemas:
    entity:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the entity.
          example: ent_2daFu0zqqDtZGJaSi2TGI2Mm1nN
        object:
          const: entity
          description: Type of the object. Always `entity`.
        country_code:
          type:
            - string
            - 'null'
          description: >-
            ISO 3166-1 alpha-2 country code of the entity, in lowercase, or
            `null` when not set. For example, `cl` or `mx`.
          example: mx
        holder_id:
          type: string
          description: >-
            Mexican tax ID (RFC) of the entity owner, without dots or hyphens.
            For a foreign entity, the value is the generic foreign RFC
            `XEXX010101000`.
          example: AAA010101AAA
        holder_name:
          type: string
          description: Legal name of the entity owner.
          example: Test Entity 1
        is_root:
          type: boolean
          description: Whether this entity is your organization's root entity.
          example: true
        mode:
          type: string
          enum:
            - live
            - test
          description: >-
            Whether the entity belongs to `live` or `test` data. One of `live`
            or `test`.
          example: test
        status:
          type: string
          enum:
            - draft
            - under_review
            - pending_signature
            - canceled
            - waiting_initialization
            - operational
            - rejected
            - paused
          description: >-
            Current status of the entity. One of `draft`, `under_review`,
            `pending_signature`, `canceled`, `waiting_initialization`,
            `operational`, `rejected`, or `paused`.
          example: operational
      required:
        - id
        - object
        - country_code
        - holder_id
        - holder_name
        - is_root
        - mode
        - status
    error_object:
      type: object
      properties:
        error:
          type: object
          description: Details of the error that caused the request to fail.
          properties:
            code:
              type: string
              description: >-
                Machine-readable code identifying the specific error, for
                example `invalid_request`.
              example: invalid_request
            doc_url:
              type: string
              description: >-
                URL of a documentation page with more details about the error.
                Not returned by every error.
              example: https://docs.fintoc.com/reference/errors
            message:
              type: string
              description: Human-readable message describing the error.
              example: 'Missing required param: account_id'
            param:
              type:
                - string
                - 'null'
              description: >-
                Name of the request parameter that caused the error. Not
                returned by every error.
              example: account_id
            type:
              type: string
              description: >-
                Category of the error, for example `invalid_request_error` or
                `authentication_error`. Not returned by every error.
              example: invalid_request_error
          required:
            - code
            - message
      required:
        - error
  securitySchemes:
    api_key:
      type: apiKey
      name: Authorization
      in: header

````