1.0.0 • Published 4 years ago

socialblade-instagram-com-api v1.0.0

Weekly downloads
12
License
MIT
Repository
github
Last release
4 years ago

Socialblade.com unofficial APIs

Node.js CI Maintainability Donate

Install

npm i socialblade-com-api

Example

const { socialblade } = require('socialblade-com-api')

async function main () {
  const response = await socialblade('barackobama')
  /**
   * response = 
   * [
   *   {
   *     date: '2020/05/26',
   *     followersDelta: 5657,
   *     followers: 117937431,
   *     followingDelta: -7,
   *     following: 605960,
   *     postsDelta: 0,
   *     posts: 15811
   *   },
   *   ...
   * ]
   */
}

Run tests

  • npm test

Run lint

  • npm run lint

Author