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

This endpoint fetches all vendors created under your organization.

Use filters and pagination as needed to manage large datasets.

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 vendors

The response is of type object[].