Sovereign Docs

Getting Started

Create your account, access Sovereign Chat, and make your first API request.

This guide takes you from account creation to your first Sovereign request.

1. Create an Account

Create your account on the Sovereign platform:

https://sovrun.one/register

After registration, your account can be assigned a plan with credits, context limits, output limits, and request concurrency.

2. Open the Chat Interface

Sovereign Chat is powered by OpenWebUI:

https://chat.sovrun.one

Use the chat interface when you want a browser-based workflow with conversation history.

3. Create an API Key

Open your platform settings and create an API key:

https://sovrun.one/settings

API keys use the Sovereign prefix:

sk-sov-live-...

Keep API keys private. Do not post them in Discord, GitHub issues, browser screenshots, or client-side code.

4. Make a Request

Use the OpenAI-compatible chat completions endpoint:

curl https://api.sovrun.one/v1/chat/completions \
  -H "Authorization: Bearer sk-sov-live-..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "sovereign-alpha",
    "messages": [
      {
        "role": "user",
        "content": "Summarize the likely impact of a pre-auth RCE in a VPN appliance."
      }
    ]
  }'

5. Use Streaming

Set stream to true for server-sent events:

{
  "model": "sovereign-alpha",
  "stream": true,
  "messages": [
    {
      "role": "user",
      "content": "Write a structured incident response checklist."
    }
  ]
}

6. Choose the Right Surface

Use OpenWebUI for:

  • interactive investigation;
  • conversation history;
  • attached documents;
  • browser workflows.

Use the API for:

  • scripts;
  • agents;
  • integrations;
  • Discord bots;
  • developer tools;
  • OpenAI-compatible clients.

On this page