API Keys
Manage your API keys to integrate HAOS with your applications
Active Keys
0
Total Requests
0
+0% this month
Rate Limit
1,000
requests/minute
Avg Response
--
milliseconds
Your API Keys
0 keysNo API Keys Yet
Create your first API key to start integrating with HAOS
Quick Start Guide
Authentication
Learn how to authenticate your API requests
API Endpoints
Explore available endpoints and methods
Rate Limits
Understand usage limits and quotas
Webhooks
Set up real-time event notifications
JavaScript / Node.js
// Example: Using the HAOS API
const response = await fetch('https://haos.fm/api/v1/presets', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
const presets = await response.json();
console.log(presets);