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

Returns the full product details for a specific product.

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

Path Parameters

  • id (required) – ID of the product

Response

Returns a single product object if found. If the ID is invalid, a 404 error will be returned.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200
application/json

Product details

The response is of type object.