Luxeno Docs

Getting Started

Get your first API call running in under five minutes. Luxeno exposes a fully OpenAI-compatible endpoint — no SDK changes required.

Step 1

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.

Step 2

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.

sk-silk-xxxxxxxxxxxxxxxxxxxxxxxx— your key format
Step 3

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.

Step 4

Make Your First API Call

Replace YOUR_API_KEY with the key you copied in Step 2 and run:

Terminal
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.

ModelInput / 1MOutput / 1MNotes
luxeno/glm-4-flash$0.30$0.30Default — fastest
luxeno/glm-4$1.20$1.20Higher quality
luxeno/deepseek-v3$0.50$0.50Fallback pool
luxeno/claude-sonnet$3.00$15.00Higher quality

For cache-aware pricing details, see the API Reference. API Reference