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

This endpoint returns all customers visible to the authenticated user. You can apply filters using query parameters like limit, offset, and any custom filters based on metadata.

The response is paginated and includes customer details like name, email, country, tax IDs, and more.

Example Use Case

Use this endpoint to populate customer dropdowns, prefill invoices, or retrieve full customer lists for compliance checks.

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

Maximum number of customers to return

offset
integer

Number of records to skip

Response

200
application/json

List of customers

The response is of type object[].