Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

basic-instagram-user-details

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

basic-instagram-user-details

A simple API to scrap basic details of an Instagram user

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
40
decreased by-42.03%
Maintainers
1
Weekly downloads
 
Created
Source




A simple API to scrap details of any Instagram user

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

OptionsOutput
idstring
fullnamestring
usernamestring
biostring
externalUrlstring
linkshimmedstring
postsstring
followersstring
followingstring
privateboolean
verifiedboolean
connectedobject

Why?

Why? Because Instagram is fucking up with everything.

  • 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;

Keywords

FAQs

Package last updated on 08 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc