Getting Started
Get your first API call running in under five minutes. Luxeno exposes a fully OpenAI-compatible endpoint — no SDK changes required.
Create an Account
luxeno.ai/register Visit luxeno.ai/register and sign up with your email address. After registration you will receive a verification email — click the link inside to activate your account before continuing.
Create an API Key
Open the dashboard and navigate to API Keys in the sidebar. Click Create and give your key a name. Copy the generated key immediately — it is shown only once and cannot be retrieved later.
Top Up Balance
Billing Go to Billing in the dashboard. Select a top-up amount and your preferred currency (USD, JPY, or EUR), then complete payment via Stripe. Funds are credited instantly and usage is deducted per token as you call the API.
Make Your First API Call
Replace YOUR_API_KEY with the key you copied in Step 2 and run:
curl https://luxeno.ai/api/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"luxeno/glm-4-flash","messages":[{"role":"user","content":"Hello!"}]}'The endpoint is fully OpenAI-compatible. Any library or tool that supports a custom base URL will work.
Pricing Overview
All prices are per 1 million tokens and charged in USD regardless of the top-up currency chosen.
| Model | Input / 1M | Output / 1M | Notes |
|---|---|---|---|
| luxeno/glm-4-flash | $0.30 | $0.30 | Default — fastest |
| luxeno/glm-4 | $1.20 | $1.20 | Higher quality |
| luxeno/deepseek-v3 | $0.50 | $0.50 | Fallback pool |
| luxeno/claude-sonnet | $3.00 | $15.00 | Higher quality |
For cache-aware pricing details, see the API Reference. API Reference