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

Use this endpoint to fetch a specific entity. You must provide the entity ID as a path parameter.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The entity ID

Response

200
application/json

Entity object

The response is of type object.