curl --location --request GET 'https://www.pacekb.com/api/v2/categories/[id]' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
{
  "success": true,
  "data": {
    "id": "<id>",
    "name": "Getting Started",
    "slug": "getting-started",
    "order_by": 20,
    "parent_id": "<id>",
    "thumbnail_url": "https://pacekb.com/img.png",
    "description": "Getting started with PaceKB is easy!",
    "long_description": "<p>It's simple to get started with PaceKB</p>",
    "icon_url": "https://pacekb.com/icon.png",
    "language": null,
    "language_parent": null
  },
  "newVersion": true
}

Response

success
boolean
Indicates whether the call was successful.
message
string
If there’s an error an accompanying error message will be visible
data
object
Category data
newVersion
boolean
Returns true if this is a copy into a new language that does not exist
curl --location --request GET 'https://www.pacekb.com/api/v2/categories/[id]' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
{
  "success": true,
  "data": {
    "id": "<id>",
    "name": "Getting Started",
    "slug": "getting-started",
    "order_by": 20,
    "parent_id": "<id>",
    "thumbnail_url": "https://pacekb.com/img.png",
    "description": "Getting started with PaceKB is easy!",
    "long_description": "<p>It's simple to get started with PaceKB</p>",
    "icon_url": "https://pacekb.com/icon.png",
    "language": null,
    "language_parent": null
  },
  "newVersion": true
}