const url = "http://localhost:8000/transbox/api/translate"
const headers = {
"Authorization": "Bearer YOUR_API_KEY"
}
data = {
"text": "Hello world",
"source": "en",
"target": "zh"
}
const res = await fetch(url, {
headers,
body: JSON.stringify(data)
})
console.log(await res.json())