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.
Generate your API key
On the login page, click "Generate a new API key" to begin your secure setup.
Understand why security matters
Your mnemonic phrase and API key are the foundation of your account security—learn why they matter.
Secure your mnemonic
Receive your unique mnemonic phrase and a reminder to store it somewhere safe—this is your master backup.
Get your API key
Your API key is revealed for the first and only time—copy it immediately and store it securely.
Activate your account
Select your preferred plan, complete the payment, and your API key is instantly activated and ready to use.
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.
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
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
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"])