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

Retrieve detailed information about a single customer, including their tax status, exemption certificates, addresses, and more.

Useful for validating existence or syncing metadata.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

ID of the customer

Response

200
application/json

Customer details

The response is of type object.