> 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/available.md).

# List of Available Influencers

## Get Available Influencers

<mark style="color:blue;">`GET`</mark> `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 | <p>Options: people, business, all<br>Default: all</p> |

#### Headers

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

{% tabs %}
{% tab title="200 Array of available profiles" %}

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

{% endtab %}
{% endtabs %}
