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.
Documentation
CLI Reference
Install and use the Bifrost CLI for resource management.
Authentication
API keys, tokens, and authentication methods.
GPU Compute
Provision and manage GPU instances for AI/ML workloads.
Kubernetes
Deploy and scale containerized applications.
Storage
S3-compatible object storage for your data.
API Reference
Complete REST API documentation.
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