socialblade-api
v1.0.0
Published
Unofficial APIs for Socialblade.com website.
Downloads
22
Maintainers
Readme
Socialblade.com unofficial APIs
Unofficial APIs for Socialblade.com website. The socialblade
function returns the last 30 days data of a username for a particular source. See example below.
Install
npm i socialblade-com-api
Params of socialblade
function
urlprefix
: Socialblade website is protected by Cloudflare, I use Scraperapi.com as prefix to bypass the blocks.source
: one of the followings.username
: username on the specified source.
Example
const { socialblade } = require('socialblade-com-api')
async function main () {
const response = await socialblade('http://api.scraperapi.com?api_key=<YOUR_API_KEY>&url=', 'twitter', 'barackobama')
}
Example response
{
table: [
{
date: '2020/05/26',
followersDelta: 5657,
followers: 117937431,
followingDelta: -7,
following: 605960,
postsDelta: 0,
posts: 15811
},
...
],
charts: [
{
id: 'weekly-followers-gained',
title: 'Weekly Followers Gained for ...',
data: [ { date: '2020/05/26', value: 123 }, ... ]
}
]
}
Run tests
npm test
Run lint
npm run lint
Bugs and feedbacks
Please open an issue.