const axios = require("axios");
const token = "СЕКРЕТ";
module.exports = (id) => {
axios.post("https://api.vk.com/method/users.get", {
params: {
'token': token,
'user_ids': id,
'v': '5.131'
}
}).then((res) => { console.log(res) /* или console.log(res.data), чтобы вывести ответ от ВК */ }).catch((err) => { console.log(err) });
};