
Integrate AURA AI into any app or product. One OpenAI-compatible endpoint, billed in AURA credits, optimized for 13 languages.
Point your existing OpenAI SDK at the AURA base URL and call model aura-1.
curl https://useaura.it/api/v1/chat \
-H "Authorization: Bearer aura_live_..." \
-H "Content-Type: application/json" \
-d '{
"model": "aura-1",
"messages": [{"role": "user", "content": "Ciao AURA"}]
}'import OpenAI from "openai";
const client = new OpenAI({
apiKey: "aura_live_...",
baseURL: "https://useaura.it/api/v1",
});
const res = await client.chat.completions.create({
model: "aura-1",
messages: [{ role: "user", content: "Ciao AURA" }],
});
console.log(res.choices[0].message.content);Sign in to create your API key and get free sandbox credits.
Text is metered per token; image, video and music have fixed credit costs. Prices in EUR via Stripe.
Earn 5% in AURA credits every time someone you invite subscribes to Startup or Business — paid automatically, every billing cycle.
Sign in to create your API key and get free sandbox credits.