The Get Product Categories API retrieves all product categories. This endpoint helps users understand and select the appropriate categories for their products.
cURL
curl --request GET \ --url https://api.trykintsugi.com/v1/products/categories/ \ --header 'X-API-KEY: <api-key>' \ --header 'x-organization-id: <api-key>'
[ { "name": "<string>", "subcategories": [ { "name": "<string>", "description": "<string>", "example": "<string>", "is_frequent": false } ] } ]
Successful Response
Name of the product category (e.g., PHYSICAL, SERVICE, DIGITAL, MISCELLANEOUS)
List of subcategories associated with the product category
Show child attributes
Name of the product subcategory (e.g., ORAL_HYGIENE, MEDICAL_DEVICES, etc.)
Description of the subcategory in the context of sales tax
Example products or services within the subcategory
Indicates if the subcategory is a frequent subcategory used by the organization. This field is deprecated.