Getting Started
Overview
The first steps to start building with AirCube.
This is the getting-started overview for AirCube.
1. Create an account
Sign up and grab your API key from the dashboard. New accounts include free credits so you can start generating right away — no credit card required.
2. Make your first request
Every model is available through the same endpoint. Pass the model id and its inputs:
import { AirCube } from "@aircube/sdk";
const client = new AirCube({ apiKey: process.env.AIRCUBE_API_KEY });
const { output } = await client.run("seedream-v4.5", {
prompt: "an isometric illustration of a data center, soft blue tones",
});
console.log(output.url);3. Explore models
Browse the full model catalog to see every available model, its capability (image, video, audio), and its per-unit price on the pricing page.