API Documentation Updated: November 03, 2025

API Reference

API Overview

This documentation system can be extended with a REST API for programmatic access.

Authentication

API requests require authentication using session-based auth or API tokens.

Example Request

// Fetch all documentation\nfetch('/api/docs', {\n    method: 'GET',\n    headers: {\n        'Content-Type': 'application/json',\n        'Authorization': 'Bearer YOUR_TOKEN'\n    }\n})\n.then(response => response.json())\n.then(data => console.log(data));

Endpoints

Available API endpoints:

  • GET /api/docs - List all documentation
  • GET /api/docs/{slug} - Get specific document
  • GET /api/categories - List all categories
  • POST /api/search - Search documentation