instagram-api-wrapper
v1.0.2
Published
Get Instagram user!
Maintainers
Readme
Install
$ npm install instagram-userUsage
const instagramUser = require('instagram-api-wrapper');
(async () => {
console.log(await instagramUser('unicorns'));
//=> {description: 'A wonderful description', email: '[email protected]', ...}
})();API
instagramUser(username)
Returns a Promise<Object> with the user information.
username
Type: string
Instagram username.
