notmebotz-tools
Version:
Sebuah Tools yang berfungsi untuk mendownload Video atau Foto dari media sosial, serta sebagai tools yang berguna untuk aplikasi kamu seperti untuk BOT
31 lines (27 loc) • 781 B
JavaScript
const axios = require('axios');
async function SimSimi(text, language = 'id') {
try {
const { data } = await axios.post(
"https://api.simsimi.vn/v1/simtalk",
new URLSearchParams({ text, lc: language }).toString(),
{
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'
}
}
);
return {
author: "Herza",
status: 200,
msg: data.message
};
} catch (error) {
return {
author: "Herza",
status: error.response?.status || 500,
msg: "Terjadi kesalahan saat memproses permintaan."
};
}
}
module.exports = { SimSimi };