3.0.1 • Published 6 years ago
instagram-analytics v3.0.1
instagram-analytics 
Get user stats from Instagram
Install
$ npm install instagram-analyticsUsage
const instagramAnalytics = require('instagram-analytics');
(async () => {
console.log(await instagramAnalytics('foobar'));
/*
{
comments: 351,
description: 'A wonderful description',
email: 'foobar@gmail.com',
engagement: 0.02,
followers: 821,
…
}
*/
})();API
instagramAnalytics(user, options?)
Returns a Promise<Object> for user stats with the following:
comments: Total number of commentsdescription: User descriptionemail: User emailengagement: Average user engagement (((comments + likes) / posts) / followers)followers: Total number of followersfollowing: Total number of followingfrequency: Returns ams-toobject with a post frequency between the first and last onefullName: User full nameid: User idlikes: Total number of likesposts: Total number of postsurl: User Instagram urlusername: Same username as suppliedwebsite: User website
user
Type: string
Username to fetch stats from.
options
Type: Object
count
Type: number
Default: 20
Number of posts to fetch.