Skip to main content
All apps
API & AI

Task API

Headless API mode: define tables (projects, tasks) and auth, and Sovrium serves a typed REST API with no UI at all.

The configuration

This is the whole app. Copy it, change it, make it yours.

name: task-api
description: Headless API for task management

auth:
  $ref: ./config/auth.yaml

tables:
  - $ref: ./config/tables/projects.yaml
  - $ref: ./config/tables/tasks.yaml

# No `pages` — the REST API is the only surface.

Run it

Install Sovrium, then start the app from its config.

curl -fsSL https://sovrium.com/install | sh
sovrium init my-api --template api-only

Build your own

Start from a template or an empty file. One config, and Sovrium runs the whole app.