Skip to main content

Get Product Classifications

Method: GET
/api/v1/products/classifications

Description

Retrieve the list of available product classifications.

🔑 Authentication

This endpoint does not require authentication.


Query Parameters

This endpoint does not require query parameters.


Example Request

GET /api/v1/products/classifications
Content-Type: application/json

Response Code: 200 - OK

{
"classifications": [
{
"group": "Health & Fitness",
"tags": ["Wellness", "Exercise", "Nutrition"]
},
{
"group": "Finance",
"tags": ["Banking", "Investing", "Budgeting"]
},
{
"group": "Retail",
"tags": ["E-commerce", "Point of Sale", "Supply Chain"]
}
]
}

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /api/v1/products/classifications \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!