const response = await fetch('https://api.microai.jp/v1/analysis/emotion', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer {{Your microAI API Key}}'
},
body: JSON.stringify({
spec: "low",
text: "栃木県那須町で、夫婦の遺体が見つかった事件で、血痕が確認された都内の空き家を夫婦が訪れた直後に、「実行役」とみられる容疑者の知人2人も入り接触した疑いがあることが、捜査関係者への取材で分かりました。"
})
});