Naar de inhoud
GET /v1/account

A user's Hive profile

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/hive-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
}