GET
/
product
/
categories
Retrieves a list of product categories
curl --request GET \
  --url https://playground.runa.io/v2/product/categories \
  --header 'X-Api-Key: <api-key>'
{
  "categories": [
    {
      "code": "beauty-and-lifestyle"
    },
    {
      "code": "booksellers"
    },
    {
      "code": "department-stores"
    },
    {
      "code": "electricals"
    },
    {
      "code": "entertainment"
    },
    {
      "code": "experiences"
    },
    {
      "code": "fashion"
    },
    {
      "code": "food-and-drink"
    },
    {
      "code": "home-and-diy"
    },
    {
      "code": "jewellers"
    },
    {
      "code": "leisure-and-sports"
    },
    {
      "code": "mens-fashion"
    },
    {
      "code": "prepaid-card"
    },
    {
      "code": "supermarkets"
    },
    {
      "code": "toys-and-games"
    },
    {
      "code": "travel"
    },
    {
      "code": "womens-fashion"
    }
  ]
}
Returns a list of all possible product categories, these correspond to the categories field in the list products and get product details endpoints.

Authorizations

X-Api-Key
string
header
required

Your API key. See the API key page on details of how to generate and store your keys.

Headers

X-Api-Version
string

The dated version of the API, if not specified a default is used. See API versioning for more information.

Response

200
application/json

A list of all possible product categories

The response is of type object.