List All Category Groups

This endpoint returns a paged list of all the groups associated with the specified
category.

Groups are also commonly referred to as sets, though this varies by product.

{
  "totalItems": 0,
  "success": true,
  "errors": [
    "string"
  ],
  "results": [
    {
      "groupId": 0,
      "name": "string",
      "abbreviation": "string",
      "isSupplemental": true,
      "publishedOn": "string",
      "modifiedOn": "2017-11-21T00:47:27.120Z"
      "categoryId": 0
    }
  ]
}
/catalog/categories/1/groups?offset=37&limit=2

Headers:
Authorization | {{bearerToken}}

{
    "totalItems": 237,
    "success": true,
    "errors": [],
    "results": [
        {
            "groupId": 1882,
            "name": "Amonkhet",
            "abbreviation": "AKH",
            "isSupplemental": false,
            "publishedOn": "2017-04-28T00:00:00",
            "modifiedOn": "2019-03-04T16:29:17.31",
            "categoryId": 1
        },
        {
            "groupId": 1909,
            "name": "Masterpiece Series: Amonkhet Invocations",
            "abbreviation": "MPS2",
            "isSupplemental": true,
            "publishedOn": "2017-04-28T00:00:00",
            "modifiedOn": "2019-02-08T19:05:35.467",
            "categoryId": 1
        }
    ]
}
Language
Click Try It! to start a request and see the response here!