const response = await fetch("https://algapsa.com/api/v1/tags", {
method: "POST",
headers: {
"X-API-Key": "$ALGA_API_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({
"tag_text": "string",
"text": "string",
"color": "string",
"background_color": "string"
})
});
const data = await response.json();