Getting Started
Quickstart
Go from zero to your first API call in 2 minutes.
01
Create an account
Sign up for a free Auraon account. No credit card required.
02
Get your API key
After signing in, go to Settings → API Keys and create a new key. Keys start with ar-.
03
Install the SDK
Auraon uses the same SDKs as OpenAI — just change the base URL.
bash
pip install openai # Python\nnpm install openai # Node.js04
Make your first request
python
from openai import OpenAI
client = OpenAI(
api_key="ar-your-api-key",
base_url="https://api.auraon.ai/v1"
)
response = client.chat.completions.create(
model="auto", # Auraon picks the best model
messages=[{"role": "user", "content": "Hello, Auraon!"}]
)
print(response.choices[0].message.content)
# → "Hello! How can I help you today?"Tip: Pass model: "auto" to let Auraon automatically route your request to the best model based on cost and quality. Or specify any model directly: gpt-4o, claude-opus-4, gemini-2-5-pro.