Get user stats from Instagram
$ npm install instagram-analytics
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,
…
}
*/
})();
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 a ms-to object 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 websiteType: string
Username to fetch stats from.
Type: Object
Type: number
Default: 20
Number of posts to fetch.