Skip to main content
KiwiFS provides three ways to make content accessible without authentication: per-page publishing, share links, and space-level visibility.

Per-page publishing

Set published: true in a page’s frontmatter to make it accessible at /p/{path} without authentication.
Published pages are served as rendered HTML at their public permalink:

Bulk operations

Publish or unpublish multiple pages at once:

Listing published pages

See Publish API for full endpoint reference. Create time-limited, optionally password-protected links to individual pages. Share links work independently from publishing — a page does not need to be published to be shared.
Recipients open the returned token URL without API authentication:
Share links have their own view counter. Revoke a link with DELETE /api/kiwi/share/:id using the share id (not the long token).

Space visibility

Control access at the space level with the visibility setting in .kiwi/config.toml:

Public visibility browsing

When space visibility allows it, pages that declare visibility: public in their frontmatter are accessible via dedicated endpoints:
Non-public pages return 404 to avoid leaking existence.

Changing visibility at runtime

How the models interact

Use publishing for content you want permanently public (docs, guides). Use share links for temporary or restricted sharing (reviews, previews). Use space visibility to open an entire knowledge base for browsing.

Publish API

REST endpoints for publish, unpublish, and status.

Analytics

Share links, comments, and real-time events.

Configuration

Space visibility settings.

Optional features

Feature matrix and error codes.
Last modified on May 31, 2026