Documentation

Get started in 5 simple steps

Setting up your Oryxen AI account is quick and straightforward. Follow these steps to generate your API key and start using our confidential computing platform.

1

Generate your API key

On the login page, click "Generate a new API key" to begin your secure setup.

Step 1: Generate API key
2

Understand why security matters

Your mnemonic phrase and API key are the foundation of your account security—learn why they matter.

Step 2: Security lecture
3

Secure your mnemonic

Receive your unique mnemonic phrase and a reminder to store it somewhere safe—this is your master backup.

Step 3: Save mnemonic
4

Get your API key

Your API key is revealed for the first and only time—copy it immediately and store it securely.

Step 4: API key displayed
5

Activate your account

Select your preferred plan, complete the payment, and your API key is instantly activated and ready to use.

Step 5: Payment and activation

Accessing Oryxen AI

Oryxen AI provides a simple, secure API and web chat interface. No software download required—just sign up, get your API key, and start building.

Web Chat

Use our secure, end-to-end encrypted web interface. No setup required—just sign in and start chatting.

Launch Web Chat →

API Integration

Build your own interface using our REST API. Full OpenAI-compatible endpoints with confidential computing guarantees.

View API Docs →

API Reference

Oryxen AI provides an OpenAI-compatible API that allows you to integrate our confidential computing platform with your existing applications and workflows. All API requests are processed inside hardware-isolated Trusted Execution Environments (TEEs), ensuring your data remains encrypted and secure at all times.

Endpoints

GET
/v1/models
List available models
POST
/v1/chat/completions
Create chat completion (OpenAI-compatible)
POST
/v1/completions
Create text completion (OpenAI-compatible)
POST
/v1/embeddings
Create embeddings (OpenAI-compatible)
GET
/v1/tokens
Check your remaining token balance

Base URL: https://api.oryxen.ai

Authentication: Bearer token in Authorization header

Content-Type: application/json

OpenAI Compatible: Drop-in replacement for OpenAI API endpoints

Code Examples

Python
JavaScript
cURL
Go
Rust
Haskell
Julia
import requests

API_KEY = "your-api-key-here"
BASE_URL = "https://api.oryxen.ai/v1"

response = requests.post(
    f"{BASE_URL}/chat/completions",
    headers={
        "Authorization": f"Bearer {API_KEY}",
        "Content-Type": "application/json"
    },
    json={
        "model": "oryxen-llm",
        "messages": [
            {"role": "user", "content": "Hello, how are you?"}
        ]
    }
)

print(response.json()["choices"][0]["message"]["content"])
×