Skip to main content
GET
/
category
cURL
curl --request GET \
  --url https://api-v2.production.higg.org/pm-api/v1/product/category \
  --header 'x-api-key: <api-key>' \
  --header 'x-developer-request-token: <api-key>'
[
  {
    "type": "Apparel",
    "categories": {}
  }
]

Introduction

The Categories endpoint allows you to retrieve the full list of supported product categories and their nested sub-categories. These categories are required when creating or updating products in the Worldly Product Module (PM).

Category types

The categories are grouped by major product types. Each entry in the response array corresponds to one of these types:
  • Apparel
  • Footwear
  • HomeTextiles
  • Other

Response structure

The response returns an array of objects. Each object contains a type and a categories object containing the hierarchical category data.
  • type: The top-level product classification (e.g., “Apparel”).
  • categories: A nested object containing the specific sub-categories and options available for that product type.
Check the Product Module Data Dictionary for more details on category values.

Authorizations

x-api-key
string
header
required
x-developer-request-token
string
header
required

Response

200 - application/json

Ok

type
enum<string>
required
Available options:
Apparel,
Footwear,
HomeTextiles,
Other
categories
object
required