/v1/profile
On-chain profile and creator-coin economy
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/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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}