GET
/
products
curl --request GET \
  --url https://api.antei.com/products \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "category": "<string>",
    "pricing_amount": 123,
    "currency": "<string>"
  }
]

Returns a list of all products that belong to your organization.

Authorization: Requires Bearer token
Base URL: https://api.antei.com

Query Parameters

  • limit (optional) – Limit the number of results

Response

A list of product objects, including ID, name, category, and pricing details.

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 products

The response is of type object[].