Vai al contenuto
GET /v1/profile

On-chain profile and creator-coin economy

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/deso-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/deso-api/v1/profile" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/deso-api/v1/profile", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/deso-api/v1/profile");
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/deso-api/v1/profile",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "source": "DeSo",
        "username": "nader",
        "is_hidden": false,
        "public_key": "BC1YLhyuDGeWVgHmh3UQEoKstda525T1LnonYWURBdpgWbFBfRuntP5",
        "description": "Creator of the DeSo blockchain, creator of @focus, creator of $Openfund \n",
        "is_verified": false,
        "creator_coin": {
            "price_deso": 29.750636,
            "deso_locked": 987.5281,
            "founder_reward_pct": 100,
            "coins_in_circulation": 99.5805
        }
    },
    "meta": {
        "timestamp": "2026-06-11T16:46:47.114Z",
        "request_id": "62514de1-e08b-450d-90c6-da9765dd8856"
    },
    "status": "ok",
    "message": "Profile retrieved successfully",
    "success": true
}