GET
/
products
/
:id
curl --request GET \
  --url https://base_url/api/v1/products/:id \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "2535af08-a139-4d0c-9827-1651e46dfbcf",
    "name": "SunShield Pro UV-Blocking Sunglasses",
    "tax_code": "TPP",
    "sku": "PT-1035",
    "description": "<string>",
    "corporation_id": "b6d009b0-d174-463f-b030-94643c28e209",
    "customs_jurisdiction_details": {
      "US": "4905.90.20.00"
    },
    "weight_in_kg": 3.5,
    "volume_in_liters": 3.5,
    "created_at": 1727284490
  },
  "message": "Successfully fetched product."
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Fetch a product response.
data
object
message
string
Example:

"Successfully fetched product."