/v1/account
Account profile and on-chain stats
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/steem-api/v1/account" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steem-api/v1/account", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steem-api/v1/account");
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/account",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"about": null,
"source": "Steem",
"created": "2016-03-30T00:04:33Z",
"website": null,
"location": null,
"username": "blocktrades",
"last_post": "2020-03-20T04:15:57",
"post_count": 2751,
"reputation": 74.56,
"sbd_balance": 1244.412,
"display_name": null,
"steem_balance": 8653.192,
"steem_power_vests": 0
},
"meta": {
"timestamp": "2026-06-11T16:47:02.391Z",
"request_id": "e4582b19-6d0b-465b-b377-1204dbef7251"
},
"status": "ok",
"message": "Account retrieved successfully",
"success": true
}