const response = await fetch('https://api.microai.jp/v1/extraction/address', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer {{Your microAI API Key}}'
},
body: JSON.stringify({
spec: "low",
text: "Text to be extracted."
})
});