# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.hive.one/core-resources/batch-profile-details-twitter-id.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
