Getting Started
Create an API key and make your first request to the Aurion API.
Getting Started
This guide walks you through creating an API key and making your first API call.
Step 1: Create an API Key
- Log in to the Aurion Admin Dashboard
- Navigate to Configuration > API Keys
- Click Create API Key
- Give it a name (e.g. "Development") and select the scopes you need
- Copy the key — it won't be shown again
Step 2: Make Your First Request
Replace ak_live_xxxx with the key you created:
curl -X GET "https://apps.aurionai.net/api/v1/tickets?limit=5" \
-H "X-API-Key: ak_live_xxxx" \
-H "Content-Type: application/json"import requests
response = requests.get(
"https://apps.aurionai.net/api/v1/tickets",
headers={"X-API-Key": "ak_live_xxxx"},
params={"limit": 5},
)
print(response.json())const response = await fetch(
"https://apps.aurionai.net/api/v1/tickets?limit=5",
{
headers: {
"X-API-Key": "ak_live_xxxx",
"Content-Type": "application/json",
},
}
);
const data = await response.json();
console.log(data);Step 3: Explore the API
You'll receive a JSON response like this:
{
"data": [
{
"id": 1,
"subject": "Laptop not booting",
"status": "open",
"priority": "high",
"created_at": "2026-01-15T10:30:00Z"
}
],
"total": 42,
"limit": 5,
"offset": 0
}Next Steps
- Authentication — Learn about API key scopes and permissions
- Tickets Guide — Full CRUD lifecycle for tickets
- API Reference — Browse all endpoints with the interactive playground
- Error Handling — Handle errors and rate limits gracefully