Documentation

Everything you need to deploy and manage sovereign compute infrastructure.

Quick Start

01

Create an account

Sign up and add a payment method to get started.

02

Generate API keys

Create API credentials from your dashboard.

03

Deploy resources

Use our CLI or API to provision compute, storage, and network.

Code Examples

Python SDK

import bifrost

client = bifrost.Client(api_key="your-api-key")

instance = client.gpu.create(
    name="ml-training",
    gpu_type="h100",
    gpu_count=1
)

print(f"Instance ready: {instance.ip}")

CLI

# Install CLI
curl -sSL https://get.bifrost.eu | sh

# Authenticate
bifrost auth login

# Create GPU instance
bifrost gpu create \
  --name ml-training \
  --type h100 \
  --count 1

# List instances
bifrost gpu list