> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sirius.menu/llms.txt
> Use this file to discover all available pages before exploring further.

# Developer Platform API

> Programmatic access to your Sirius Developer Platform projects, analytics, keys, and versions.

<Info>
  The Developer Platform API requires a **Max plan**. [Upgrade in your dashboard](https://developer.sirius.menu/settings).
</Info>

## Base URL

```
https://developer.sirius.menu/v1
```

All endpoints return JSON. Errors follow a standard format:

```json theme={null}
{ "error": "Description of what went wrong" }
```

## Quick start

List your projects:

```bash theme={null}
curl https://developer.sirius.menu/v1/projects \
  -H "Authorization: Bearer sdt_your_token_here"
```

```json theme={null}
{
  "projects": [
    {
      "id": "a1b2c3d4-...",
      "name": "My Script",
      "script_id": "sid_abc123xyz456",
      "verified": 1,
      "status": "active"
    }
  ]
}
```

## What you can do

| Resource      | Operations                                               |
| ------------- | -------------------------------------------------------- |
| **Projects**  | List all, get details                                    |
| **Analytics** | Query execution data, users, executors, trends           |
| **Keys**      | List issued keys, revoke by ID, bulk revoke by watermark |
| **Versions**  | List script versions, rollback to a previous version     |
| **Webhooks**  | List configured webhook endpoints                        |

## Rate limits

100 requests per minute per API token. See [Rate Limits](/developer-api/rate-limits) for details.
