/v1/followers
Who follows a user, with total counts
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}