How to get my authentication ?
Summarize how to get my authentication
fetch('https://api.pubstack.io/v1/me/tags', { mode: 'no-cors', headers: { 'x-api-key': '<API_KEY>' }})
.then(response => response.json())
.then(myTags => {
console.log(JSON.stringify(myTags));
});