Accesing Muzaic API
Using header SecretKey
Accessing MuzaicApi getTags endpoint example (JavaScript)
const https = require('https');
const options = {
hostname: 'm10.muzaic.ai',
path: '/getTags',
method: 'GET',
headers: {
'MuzaicAPI-Secret-Key': '88200f537a1e91e2a1f5ef73484df245'
}
};
const req = https.request(options, (res) => {
// Handle the response here
});
req.end();
How to get a Secret Key?
Last updated