/v1/account
A user's Hive profile
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/hive-api/v1/account" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hive-api/v1/account", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hive-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/hive-api/v1/account",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"bio": "IT Wizard, Hive Witness",
"url": "https://hive.blog/@gtg",
"cover": null,
"posts": 7375,
"avatar": "https://grey.house/img/gandalf.png",
"created": "2016-06-30T17:22:18",
"website": null,
"location": "Hive",
"username": "gtg",
"followers": 10955,
"following": 847,
"reputation": 76.01,
"display_name": "Gandalf the Grey"
},
"meta": {
"timestamp": "2026-06-09T11:38:52.557Z",
"request_id": "7b50b88d-3108-490d-82ca-3fbf98ddd55c"
},
"status": "ok",
"message": "Account retrieved successfully",
"success": true
}