betabotz-tools
Version:
Scraper Free To Use ( Toanime,Tozombie,Remini/Upscale, Etc )
22 lines (19 loc) • 468 B
JavaScript
/*
Tools Instagram Stalk/Instagram Finder By Username
*/
const axios = require('axios');
const { baseUrl } = require('../config.js')
async function stalkig(username) {
try {
const { data } = await axios.get(`${baseUrl}/tools/stalk-ig?q=${username}`, {
headers: {
'accept': 'application/json',
},
});
return data;
} catch (error) {
console.error(error);
return 'Internal Server Error!';
}
}
module.exports = { stalkig }