GET
/
entities
curl --request GET \
  --url https://api.antei.com/entities \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "country": "<string>",
    "tax_id": "<string>",
    "is_primary": true
  }
]

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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

List of entities

The response is of type object[].