An open API service indexing awesome lists of open source software.

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

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