Get your first API call running in under 2 minutes.
Sign in to the dashboard and create an API key. Copy it — you won't see it again.
ACAI is OpenAI-compatible. Point any OpenAI SDK or HTTP client at https://api.agilecloud.ai and use your API key.
cURL
curl https://api.agilecloud.ai/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4o-mini",
"messages": [
{"role": "user", "content": "Hello, world!"}
]
}'Python (OpenAI SDK)
from openai import OpenAI
client = OpenAI(
base_url="https://api.agilecloud.ai/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello, world!"}],
)
print(response.choices[0].message.content)JavaScript (OpenAI SDK)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.agilecloud.ai/v1",
apiKey: "YOUR_API_KEY",
});
const response = await client.chat.completions.create({
model: "gpt-4o-mini",
messages: [{ role: "user", content: "Hello, world!" }],
});
console.log(response.choices[0].message.content);ACAI exposes three primary inference endpoints, plus passthrough access to frontier models:
Every request through ACAI automatically gets compliance and platform features at no extra cost:
Now that you've made your first call, set up compliance policies, explore the model catalog, install the SDK, and generate your first audit report.