Skip to main content
GET
/
taxonomy-categories
Get Categories
curl --request GET \
  --url https://api-v2.production.higg.org/pic-api/v1/taxonomy-categories \
  --header 'x-api-key: <api-key>' \
  --header 'x-developer-request-token: <api-key>'
[
  {
    "code": "<string>",
    "name": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://developer.worldly.io/llms.txt

Use this file to discover all available pages before exploring further.

Use this endpoint to retrieve the full list of product categories available in PIC. Each category in the response includes a code and a human-readable name. The code value is what you pass as the categoryExpansionId (or {productCategory}) when creating or updating a product.

Implementation Details

  • No request body: This is a GET request with no parameters.
  • Category list: Returns a flat list of category objects. Each entry includes a code (to be used as the categoryExpansionId / {productCategory} in other endpoints) and a human-readable name.

Authorizations

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

Response

200 - application/json

Ok

code
string
required
name
string
required