Just Merch API
Store APIAdmin API
Store APIAdmin API
Discord
  1. Store API
  • Intro
  • Client SDKs
  • Authentication
  • Get categories
    GET
  • Get products
    GET
  1. Store API

Get categories

GET
/v1/catalog/categories
The endpoint makes an HTTP GET request to retrieve a list of categories from the catalog.

Request#

No request body parameters are required for this request.

Response#

The response is a JSON array containing the list of categories.
Example:
[
    "All Products",
    "Apparel",
    "Phone Cases",
    "Wall Art",
    "Notebooks",
    "Hats",
    "Desk Art",
    "Kids"
]

Request

Authorization
Add parameter in header
clientId
Example:
clientId: ********************

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:8083/v1/catalog/categories' \
--header 'clientId;'

Responses

🟢200categories
application/json
Body
array[string]
optional
Example
[
    "All Products",
    "Apparel",
    "Phone Cases",
    "Wall Art",
    "Notebooks",
    "Hats",
    "Desk Art",
    "Kids"
]
Previous
Authentication
Next
Get products
Built with