https://github.com/preethamvishy/instalytics
Instagram analytics for any user using Node.js. https://www.npmjs.com/package/instalytics
https://github.com/preethamvishy/instalytics
analytics instagram instagram-analytics instagram-api social-media
Last synced: 7 months ago
JSON representation
Instagram analytics for any user using Node.js. https://www.npmjs.com/package/instalytics
- Host: GitHub
- URL: https://github.com/preethamvishy/instalytics
- Owner: preethamvishy
- License: mit
- Created: 2018-02-25T03:54:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-06T12:19:32.000Z (over 6 years ago)
- Last Synced: 2024-10-31T17:57:04.692Z (8 months ago)
- Topics: analytics, instagram, instagram-analytics, instagram-api, social-media
- Language: JavaScript
- Homepage:
- Size: 24.4 KB
- Stars: 38
- Watchers: 7
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
NodeJS tool to fetch Instagram analytics for any user without involving tokens or headless browsers.
⭐️ the [GitHub repo](https://github.com/preethamvishy/instalytics) if this works for you.
### Data
*Instalytics* returns the following data
```javascript
{
posts,
totalLikes,
totalComments,
totalEngagements,
averageLikes,
averageComments,
averageEngagements,
mostLikedMedia, //Number of media customisable. Default: 5
mostCommentedMedia, //Number of media customisable. Default: 5
username,
name,
id,
bio,
website,
followers,
following,
profilePictureUrl,
profilePictureUrlHD
}
```### Usage
`npm install instalytics --save`
`Example.js` provides a concise example.
```javascript
const { getQuickStats } = require('./index');getQuickStats('instagram', 6).then(stats => {
console.log(stats);
});```
### License
MIT