Socket
Book a DemoInstallSign in
Socket

raganork-insta-scraper

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

raganork-insta-scraper

Fetch instagram posts/user/story metadata in a pure json.

unpublished
latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

Insta Fetcher

HitCount GitHub license Npm package monthly downloads GitHub repo size

Fetch instagram metadata with full details and simplified json metadata

☕ Buy Me a Coffee : Saweria

Features

  • fetchUser
  • fetchPost
  • fetchStories
  • explore
  • fetchHighlights
  • fetchTV
  • fetchReels

Usage

Installation:

npm i insta-fetcher

recommended to set the session id before make call to all function

const ig = require('insta-fetcher');

ig.setCookie('your session id');

Example

const ig = require('insta-fetcher');

// Public post
ig.fetchPost('https://www.instagram.com/p/CMBZUsMALA_/').then(res => {
   console.log(res);
})
// User data
ig.fetchUser('mg.creativestudio').then(res => {
   console.log(res);
})

// Fetch stories
ig.fetchStories('adiraas.p').then(res => {
   console.log(res);
})

Contributing

All kinds of contributions are welcome - code, tests, documentation, bug reports, new features, etc...

  • Send feedbacks.
  • Submit bug reports.
  • Write/Edit the documents.
  • Fix bugs or add new features.

Keywords

instagram-scraper

FAQs

Package last updated on 10 Dec 2021

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