Aurion Docs

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

  1. Log in to the Aurion Admin Dashboard
  2. Navigate to Configuration > API Keys
  3. Click Create API Key
  4. Give it a name (e.g. "Development") and select the scopes you need
  5. 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
curl -X GET "https://apps.aurionai.net/api/v1/tickets?limit=5" \
  -H "X-API-Key: ak_live_xxxx" \
  -H "Content-Type: application/json"
Python
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())
TypeScript
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

On this page