Skip to content
GET /v1/followers

Who follows a user, with total counts

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/steem-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/steem-api/v1/followers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steem-api/v1/followers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steem-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/steem-api/v1/followers",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

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

{
    "data": {
        "source": "Steem",
        "username": "steemitblog",
        "followers": [
            "javis1225",
            "zeeshanbahi",
            "abbiejamie",
            "ikechukwu77",
            "cekmadcm",
            "archie25",
            "backofgames",
            "bdshahab",
            "writerchoice",
            "carson435",
            "thelucifer",
            "jackxiaoma",
            "mani158",
            "starfall2026",
            "obibtc001",
            "daniwise84",
            "danaljannah",
            "divado",
            "cur8.academy",
            "cur8",
            "christel237",
            "gideonuwas1993",
            "hive-177926",
            "sethare",
            "abucapt",
            "muntazirhassan",
            "youngkeen",
            "majorjack",
            "mjeelifestyle",
            "moses005",
            "steemone.com",
            "shahbazsial",
            "hive-109722",
            "tariqbhai",
            "mikehydes",
            "onlykemzzy",
            "realchampion1",
            "internetexpert",
            "bethrand",
            "effiongd",
            "youngqueen100",
            "alif123",
            "freshjay",
            "adeyemi212",
            "mustafamohameed",
            "nurhaman",
            "drnajiba",
            "fati12",
            "prompttech",
            "engrtitu"
        ],
        "sample_count": 50,
        "follower_count": 40765,
        "following_count": 15
    },
    "meta": {
        "timestamp": "2026-06-13T13:56:11.750Z",
        "request_id": "8792c388-8970-40bd-8ac4-4d0e351199ae"
    },
    "status": "ok",
    "message": "Followers retrieved successfully",
    "success": true
}