Skip to content
GET /v1/followers

The accounts following a user

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/hive-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/hive-api/v1/followers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hive-api/v1/followers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hive-api/v1/followers");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/hive-api/v1/followers",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 50,
        "source": "Hive",
        "username": "gtg",
        "followers": [
            "a-0-0",
            "a-0-0-0",
            "a-0-0-0-a",
            "a-0-0-0-real-dex",
            "a-0-3",
            "a-2",
            "a-3",
            "a-7",
            "a-a-0",
            "a-a-1",
            "a-a-10",
            "a-a-a",
            "a-a-a-a",
            "a-a-lifemix",
            "a-angel",
            "a-jeffrey",
            "a-l-e-x",
            "a-okio",
            "a-resteembot",
            "a-steemit-upvote",
            "a-zajonc",
            "a007-steem",
            "a0a0",
            "a1000carv",
            "a12832",
            "a23b4d11f15m",
            "a2574686830",
            "a7lady",
            "a7mednabi7",
            "aa9",
            "aaa-resteem",
            "aaaahhhh",
            "aabulhasan",
            "aaceh",
            "aadyashakti",
            "aagabriel",
            "aage",
            "aakifzee",
            "aalagenesis",
            "aamaksal",
            "aamir1994",
            "aamsteem",
            "aan01",
            "aangulomaria",
            "aarkay",
            "aaronleang",
            "aaronli",
            "aaronmda",
            "aaronteng",
            "aarshi"
        ]
    },
    "meta": {
        "timestamp": "2026-06-13T14:07:19.119Z",
        "request_id": "ba29359f-ed6b-4b37-a02c-f2df88d1aee0"
    },
    "status": "ok",
    "message": "Followers retrieved successfully",
    "success": true
}