README
instadp
Fast and lean implementation to grab profile photos, stories & reels from instagram without needing an account.
const InstaDP = require('instadp');
(async() => {
const insta = new InstaDP();
const stories = await insta.getStories('username');
})();
//stories => ['some_photo.jpg', 'some_video.mp4']
Features
✅ Full Size Profile Pictures
✅ Stories (Images, Videos)
✅ Reels
⛔️ Highlights
⛔️ Direct Downloads
Installation
npm install instadp
Testing
npm test