?
Active Keys
0
Total Requests
0
+0% this month
Rate Limit
1,000
requests/minute
Avg Response
--
milliseconds
API Docs

Your API Keys

0 keys
🔑

No API Keys Yet

Create your first API key to start integrating with HAOS

Quick Start Guide

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);
Success!