← Dashboard / Admin: API Keys
Generate New API Key
Existing API Keys
Name Key Prefix Created By Created Expires Last Used Status Actions
No API keys found. Generate one above.
Active Revoked
API Usage

Include the API key in your requests using the Authorization header:

HTTP HEADER
Authorization: Bearer YOUR_API_KEY

Example — create a ticket via cURL:

CURL
curl -X POST https://your-instance/api/create_ticket.php \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"title":"My ticket","category":"General","type":"Issue","priority":3}'

API keys provide programmatic access to create and manage tickets. Keep keys secure and rotate them regularly.