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

Base URL

https://developer.sirius.menu/v1
All endpoints return JSON. Errors follow a standard format:
{ "error": "Description of what went wrong" }

Quick start

List your projects:
curl https://developer.sirius.menu/v1/projects \
  -H "Authorization: Bearer sdt_your_token_here"
{
  "projects": [
    {
      "id": "a1b2c3d4-...",
      "name": "My Script",
      "script_id": "sid_abc123xyz456",
      "verified": 1,
      "status": "active"
    }
  ]
}

What you can do

ResourceOperations
ProjectsList all, get details
AnalyticsQuery execution data, users, executors, trends
KeysList issued keys, revoke by ID, bulk revoke by watermark
VersionsList script versions, rollback to a previous version
WebhooksList configured webhook endpoints

Rate limits

100 requests per minute per API token. See Rate Limits for details.