🔑Authentification
Comment obtenir sa clé d'API
Exemple
NodeJS / node-fetch
const fetch = require("node-fetch")
fetch('https://api.magic-bot.ovh/v1/premium', {
headers: { 'Token': 'Bearer votre_token' }
})
.then(res => res.json())
.then(json => console.log(json));Mis à jour