doclight
v1.0 is now in Beta

Documentation that users
actually want to read

Turn your docs into a competitive advantage. Ship beautiful, AI-friendly, consumable documentation that your team and users will love.

500+
Teams building
5K+
Pages published
99.9%
Uptime
🔒 doclight.dev/docs
Docs/Introduction

Introduction

Welcome to the Doclight documentation. This guide will help you get started with building and deploying your first documentation site in minutes.

Quick Start

Deploy your first project in under 5 minutes.

API Reference

Learn how to integrate with our REST API.

This is where your docs come to life

See how real teams use Doclight to create beautiful, searchable documentation that developers actually use.

See a live example

Everything you need to ship docs

A complete documentation platform designed for modern engineering teams.

Unlimited pages

Create as many documentation pages as you need

OpenAPI support

Auto-generate API docs from your OpenAPI specs

Team collaboration

Real-time editing with unlimited collaborators

Custom branding

Match your brand with custom themes and domains

Full-text search

Fast, indexed search across all your content

LLM-friendly APIs

Raw markdown endpoints optimized for AI consumption

Built for power users

Advanced features for teams who need more.

Markdown Editor

Notion-like writing experience
with slash commands, real-time preview,
and full Markdown support.

# Getting Started
Welcome to the documentation.
To install, runnpm install
Basic Blocks
Heading 1
Bullet List

API Reference

Auto-generate interactive docs from your OpenAPI specs.

Custom Branding

Match your brand with custom colors, logos, and domains.

Code First

From OpenAPI to beautiful docs

Stop manually updating your API reference. Just upload your OpenAPI spec (Swagger) and we'll generate interactive documentation automatically.

  • Always in sync with your code
  • Interactive "Try it out" console
  • Request/Response examples
  • Authentication support
openapi: 3.0.0
info:
  title: Doclight Public API
  version: 1.0.0
  description: Public API for managing documentation.
paths:
  /api/v1/projects/{projectId}/docs:
    get:
      summary: List all docs
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array