API Docs
  • Welcome
  • Key Concepts
  • Authentication
  • Response Codes
  • Using ETags
  • Core Resources
    • List of Available Influencers
    • Top Influencers
    • Influencer Details (Twitter ID)
    • Influencer Details (Twitter Screen Name)
    • Influencer Rank/Score History (Twitter ID)
    • Influencer Rank/Score History (Twitter Screen Name)
    • Influencer Podcasts (Twitter ID)
    • Influencer Podcasts (Twitter Screen Name)
    • Batch Influencers Details (Twitter ID)
Powered by GitBook
On this page

Was this helpful?

  1. Core Resources

Influencer Details (Twitter Screen Name)

Retrieve Influencer Details

GET https://api.hive.one/v1/influencers/screen_name/:screen_name/

This endpoint allows you to get the rank/score details of an influencer using their screen name.

Path Parameters

Name
Type
Description

screen_name

string

Screen name 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: all

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
        }
    }
}
{
    "data": {
        "name": "jack 🌍🌏🌎",
        "imageUrl": "https://pbs.twimg.com/profile_images/1115644092329758721/AFjOr-K8.jpg",
        "scores": [
            {
                "name": "Crypto",
                "abbr": "Crypto",
                "score": 300.663957280137,
                "rank": 69,
                "followers": [
                    {
                        "id": "1469101279",
                        "name": "Andreas ☮ 🌈 ⚛ ⚖ 🌐 📡 📖 📹 🔑 🛩",
                        "screenName": "aantonop",
                        "imageUrl": "https://pbs.twimg.com/profile_images/1201322457912795137/F2IOy2T5.jpg",
                        "rank": 1,
                        "score": 617.757039057179,
                        "twitterId": "1469101279"
                    },
                ]
            },
            {
                "name": "Bitcoin",
                "abbr": "BTC",
                "score": 339.177595069603,
                "rank": null,
                "followers": [
                    {
                        "id": "23618940",
                        "name": "Jameson Lopp",
                        "screenName": "lopp",
                        "imageUrl": "https://pbs.twimg.com/profile_images/949374657852928000/Ti3zmF2L.jpg",
                        "rank": 3,
                        "score": 778.598199990271,
                        "twitterId": "23618940"
                    },
                ]
            },
            {
                "name": "Ethereum",
                "abbr": "ETH",
                "score": 228.278309898247,
                "rank": null,
                "followers": [
                    {
                        "id": "2362854624",
                        "name": "Joseph Lubin",
                        "screenName": "ethereumJoseph",
                        "imageUrl": "https://pbs.twimg.com/profile_images/968150222760132608/Dzi20Mri.jpg",
                        "rank": 3,
                        "score": 681.87697976236,
                        "twitterId": "2362854624"
                    },
                ]
            },
            {
                "name": "Ripple",
                "abbr": "XRP",
                "score": 185.249746297779,
                "rank": null,
                "followers": [
                    {
                        "id": "28582680",
                        "name": "Brad Garlinghouse",
                        "screenName": "bgarlinghouse",
                        "imageUrl": "https://pbs.twimg.com/profile_images/1165061949601632256/vVVkiMFn.jpg",
                        "rank": 2,
                        "score": 907.413656363106,
                        "twitterId": "28582680"
                    },
                ]
            }
        ],
        "twitterId": "12",
        "screenName": "jack",
        "hasPodcasts": {
            "host": false,
            "guest": true
        }
    }
}
{
    "error": "Could not find any accounts matching screen_name: foobar"
}

Top Followers

If you want to get a list of an influencers top followers in a given clusteradd include_followers=1 to the query parameters.

PreviousInfluencer Details (Twitter ID)NextInfluencer Rank/Score History (Twitter ID)

Last updated 4 years ago

Was this helpful?