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


---

# 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/available.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.
