# Batch Influencers Details (Twitter ID)

## Get Multiple Profiles

<mark style="color:blue;">`GET`</mark> `https://api.hive.one/v1/influencers/batch/?twitter_ids=[1,2,3]`

This endpoint allows you to get the Rank/Score data for multiple influencers.\
The max amount of influencers you can get in one request is 20.\
At the moment it only works with twitter id's.

#### Query Parameters

| Name               | Type    | Description                                               |
| ------------------ | ------- | --------------------------------------------------------- |
| twitter\_ids       | array   | An array of twitter id's                                  |
| rank\_type         | string  | <p>Options: All, personal<br>Default: all</p>             |
| include\_followers | boolean | <p>Options: 0 (false), 1 (true)<br>Default: 0 (false)</p> |

#### Headers

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

{% tabs %}
{% tab title="200 `success` will provide an array of influencer detail objects for all the twitter ids that worked
`failure` will return back an array of all the twitter ids that failed." %}

```
{
    "data": {
        "success": [
            {influencer_details},
            {influencer_Details}
        ],
        "failure": [
            "1",
            "2"
        ]
    }
}
```

{% endtab %}
{% endtabs %}
