Influencer Details (Twitter ID)
Retrieve Influencer Details
GET
https://api.hive.one/v1/influencers/id/:twitter_id/
This endpoint allows you to get the rank/score details of an influencer using their twitter id
Path Parameters
Name
Type
Description
twitter_id
number
Twitter ID of the influencer to retrieve
Query Parameters
Name
Type
Description
rank_type
string
Options: all, personal Default: all
include_followers
boolean
Options: 0 (false), 1 (true) Default: 0 (false)
Headers
Name
Type
Description
Authentication
string
Authentication token
{
"data": {
"name": "jack 🌍🌏🌎",
"imageUrl": "https://pbs.twimg.com/profile_images/1115644092329758721/AFjOr-K8.jpg",
"scores": [
{
"name": "Crypto",
"abbr": "Crypto",
"score": 294.33173391507,
"rank": 71
},
{
"name": "Bitcoin",
"abbr": "BTC",
"score": 336.077875237622,
"rank": null
},
{
"name": "Ethereum",
"abbr": "ETH",
"score": 219.316892977565,
"rank": null
},
{
"name": "Ripple",
"abbr": "XRP",
"score": 186.207651169653,
"rank": null
}
],
"twitterId": "12",
"screenName": "jack",
"hasPodcasts": {
"host": false,
"guest": true
}
}
}
Top Followers
If you want to get a list of an influencers top followers in a given cluster
add include_followers=1
to the query parameters.
Last updated
Was this helpful?