> For the complete documentation index, see [llms.txt](https://docs.hive.one/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hive.one/core-resources/top-influencers.md).

# Top Influencers

## Get Top Influencers

<mark style="color:blue;">`GET`</mark> `https://api.hive.one/v1/influencers/top/`

This endpoint allows you to get the top influencers in a given cluster.

#### Query Parameters

| Name    | Type    | Description                                                             |
| ------- | ------- | ----------------------------------------------------------------------- |
| cluster | string  | <p>Options: Crypto, BTC, ETH, XRP<br>Default: Crypto</p>                |
| after   | integer | <p>Used for pagination increases in increments of 50<br>Default: 0 </p> |

#### Headers

| Name           | Type   | Description          |
| -------------- | ------ | -------------------- |
| Authentication | string | Authentication token |

{% tabs %}
{% tab title="200 50 influencers in the requested cluster" %}

```
{
    "data": {
        "people": {
            "edges": [
                {
                    "node": {
                        "twitter_id": "1469101279",
                        "name": "Andreas ☮ 🌈 ⚛ ⚖ 🌐 📡 📖 📹 🔑 🛩",
                        "screenName": "aantonop",
                        "imageUrl": "https://pbs.twimg.com/profile_images/1201322457912795137/F2IOy2T5.jpg",
                        "followers": 504293,
                        "following": 2716,
                        "score": 617.37441871724,
                        "rank": 1,
                        "changeWeek": -0.21628945821100842
                    }
                },
                {
                    "node": {
                        "twitter_id": "295218901",
                        "name": "vitalik.eth",
                        "screenName": "VitalikButerin",
                        "imageUrl": "https://pbs.twimg.com/profile_images/977496875887558661/L86xyLF4.jpg",
                        "followers": 885490,
                        "following": 151,
                        "score": 615.296557176862,
                        "rank": 2,
                        "changeWeek": 1.2110566998070453
                    }
                }
            ]
        }
    }
}
```

{% endtab %}
{% endtabs %}
