/v1/followers
Who follows a user, with total counts
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}