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

List of Available Influencers

Get Available Influencers

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

This endpoint will return a list of all available influencers we have data for. Each item is an array containing two items: The twitter id and screen name.

Query Parameters

Name
Type
Description

account_type

string

Options: people, business, all Default: all

Headers

Name
Type
Description

Authentication

string

Authentication token

{
    "data": {
        "available": [
            [
                "12",
                "jack"
            ],
            [
                "34",
                "ariel"
            ],
        ]
    }
}

PreviousUsing ETagsNextTop Influencers

Last updated 4 years ago

Was this helpful?