Skip to main content
The Developer Platform API requires a Business plan. Upgrade in your dashboard.

API tokens

Every request needs an Authorization header with a Bearer token.
curl https://developer.sirius.menu/v1/projects \
  -H "Authorization: Bearer sdt_a1b2c3d4e5f6..."
Tokens start with sdt_ and are 68 characters long.

Creating a token

  1. Go to developer.sirius.menu/settings
  2. Scroll to API Tokens
  3. Enter a name and click Create token
  4. Copy the token immediately — it’s only shown once
Each token has full access to all projects owned by your account. There’s no scope system — a token can do anything you can do in the dashboard.

Errors

401 Unauthorized — missing or invalid token.
{ "error": "Unauthorized. Use Authorization: Bearer sdt_xxxxx" }
403 Forbidden — valid token, but you’re not on the Business plan.
{ "error": "The Developer Platform API requires a Business plan" }