Awesome
<p align="center"> <img src="media/buid.jpg" width="340"> <br> <a href="https://travis-ci.org/CodeDotJS/basic-instagram-user-details"> <img src="https://travis-ci.org/CodeDotJS/basic-instagram-user-details.svg?branch=master"> </a> ⚫ <img src="https://camo.githubusercontent.com/b9d624cb37169bb3e06fd6deddabfff02b5e43be/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f64655f7374796c652d584f2d3565643963372e737667"> <br> <br> <b>A simple API to scrap details of any Instagram user</b> </p>Install
$ npm install --save basic-instagram-user-details
Usage
User ID
const bud = require('basic-instagram-user-details');
const user = 'iama_rishi';
bud(user, 'id').then(id => {
console.log(id);
// => { data: '259220806' }
});
OR
bud(user, 'id').then(res => {
const userId = res.data;
console.log(userId);
// => 259220806
});
Example
Full Name
bud(user, 'fullname').then(fullname => {
console.log(fullname);
// => { data: 'Rishi Giri' }
});
API
bud('username', 'options')
username
:
string
options
:
string
Options | Output |
---|---|
id | string |
fullname | string |
username | string |
bio | string |
externalUrl | string |
linkshimmed | string |
posts | string |
followers | string |
following | string |
private | boolean |
verified | boolean |
connected | object |
Why?
Why? Because Instagram is fucking up with everything.
Related
instavim
:
Command line Instagram media downloader.
istalk
:
Stalk Instagram users from the command line!
instagram-id-of
:
Find UserID of any Instagram user from command line!
instagram-profile-picture
:
An API to get url to the profile picture and other Instagram medias.
instagram-links
:
Get links to the publically shared media on Instagram.
License
MIT © Rishi Giri;