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

# Get All Entities

> Retrieve all entities registered under your account

This endpoint returns a list of all entities associated with your account. Each entity includes details like its name, country, tax ID, and whether it is marked as your primary entity.


## OpenAPI

````yaml GET /entities
openapi: 3.0.1
info:
  title: Antei API Reference
  description: >-
    Programmatic access to Antei’s platform. Use this API to manage core objects
    and retrieve taxation insights.
  version: 1.0.0
  license:
    name: MIT
  contact:
    name: Antei Developer Support
    email: support@antei.com
    url: https://antei.com
servers:
  - url: https://api.antei.com
security:
  - bearerAuth: []
paths:
  /entities:
    get:
      summary: Get All Entities
      description: Returns a list of all entities that belong to the authenticated account.
      responses:
        '200':
          description: List of entities
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Entity'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Entity:
      type: object
      required:
        - id
        - name
        - country
      properties:
        id:
          type: string
          description: Unique ID of the entity
        name:
          type: string
          description: Legal name of the entity
        country:
          type: string
          description: Country of registration
        tax_id:
          type: string
          description: Official tax ID for the entity
        is_primary:
          type: boolean
          description: Indicates whether this is the primary entity
    Error:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        status:
          type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````