/v1/profile
Account profile metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/nostr-api/v1/profile" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nostr-api/v1/profile", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nostr-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/nostr-api/v1/profile",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"name": "fiatjaf",
"about": "~",
"lud16": "npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6@npub.cash",
"nip05": "[email protected]",
"banner": "https://cdn.satellite.earth/8f10244a702cbc2ca57b6c27a57b8cc02d5fdddccab0fc2e5988ce17e08f1732.jpg",
"pubkey": "3bf0c63fcb93463407af97a5e5ee64fa883d107ef9e558472c4eb9aaaefa459d",
"picture": "https://fiatjaf.com/static/favicon.jpg",
"website": "https://stuff.fiatjaf.com/",
"updated_at": 1755901618,
"display_name": null
},
"meta": {
"timestamp": "2026-06-09T11:40:02.863Z",
"request_id": "5461f06e-de54-44e1-b49f-9f1f73103be0"
},
"status": "ok",
"message": "Profile retrieved successfully",
"success": true
}