For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Categories

Retrieves a list of all active categories for the authenticated client.

Endpoint

GET /api/categories

Authentication

  • Requires API token authentication

  • Subject to rate limiting

Response

Success (200 OK)

{
  "categories": [
    {
      "_id": "string",
      "name": "string"
    }
  ]
}

Error (500 Internal Server Error)

{
  "error": "Internal server error"
}

Last updated