Skip to main content
GET
https://api.usegately.com
/
api
/
v1
/
help
/
categories
curl -X GET "https://api.usegately.com/api/v1/help/categories" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "categories": [
    {
      "id": "cat_123",
      "name": "Getting Started",
      "description": "Learn the basics",
      "icon": "rocket",
      "article_count": 5
    },
    {
      "id": "cat_456",
      "name": "Billing",
      "description": "Payment and subscription help",
      "icon": "credit-card",
      "article_count": 3
    }
  ]
}
Retrieve all help article categories for your knowledge base.

Response

success
boolean
Whether the request was successful
categories
array
Array of category objects with article counts
curl -X GET "https://api.usegately.com/api/v1/help/categories" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "categories": [
    {
      "id": "cat_123",
      "name": "Getting Started",
      "description": "Learn the basics",
      "icon": "rocket",
      "article_count": 5
    },
    {
      "id": "cat_456",
      "name": "Billing",
      "description": "Payment and subscription help",
      "icon": "credit-card",
      "article_count": 3
    }
  ]
}