Skip to main content
GET
/
vendors
Get all 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

id
string
required

Unique identifier for the vendor

name
string
required

Vendor's legal or trading name

country
string
required

Country of vendor operation

tax_id
string

Vendor's tax identification number

exempt
boolean

Indicates whether the vendor is tax exempt

email
string<email>

Vendor's contact email