const response = axios.post("https://translate.api.cloud.yandex.net/translate/v2/translate",
// Это что за новый синтаксис такой?
json = JSON.stringify(body),
headers = headers
)
const response = axios.post("https://translate.api.cloud.yandex.net/translate/v2/translate", {
body: JSON.stringify(body), // В необходимости JSON.stringify тоже не уверен
headers: headers
})