Back to dashboard
AURA AI
AURA AI for Developers

One AI API. Text, image, video, music.

Integrate AURA AI into any app or product. One OpenAI-compatible endpoint, billed in AURA credits, optimized for 13 languages.

Text generation
Image generation
Video generation
Music generation

Quick start

Point your existing OpenAI SDK at the AURA base URL and call model aura-1.

cURL
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"}]
  }'
JavaScript (OpenAI SDK)
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);

Your dashboard

Sign in to create your API key and get free sandbox credits.

Pricing

Sandbox
Free
30k credits / month
Startup
€29/mo
500k credits / month
Business
€99/mo
2M credits / month

Text is metered per token; image, video and music have fixed credit costs. Prices in EUR via Stripe.

Affiliate program

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.