Zum Inhalt springen
GET /v1/user

A Keybase user's full identity

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/keybase-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "bio": "Previously worked on 🔐 Keybase, 😻OkCupid, 📘SparkNotes, and some random other junk. I love making things.",
        "uid": "23260c2ce19420f97b58d7d95b68ca00",
        "proofs": [
            {
                "url": "https://twitter.com/malgorithms",
                "name": "malgorithms",
                "state": 1,
                "network": "twitter"
            },
            {
                "url": "https://github.com/malgorithms",
                "name": "malgorithms",
                "state": 1,
                "network": "github"
            },
            {
                "url": "https://reddit.com/user/malgorithms",
                "name": "malgorithms",
                "state": 1,
                "network": "reddit"
            },
            {
                "url": "https://news.ycombinator.com/user?id=malgorithms",
                "name": "malgorithms",
                "state": 1,
                "network": "hackernews"
            },
            {
                "url": "http://chriscoyne.com",
                "name": "chriscoyne.com",
                "state": 1,
                "network": "dns"
            },
            {
                "url": "https://chriscoyne.com",
                "name": "chriscoyne.com",
                "state": 1,
                "network": "generic_web_site"
            }
        ],
        "picture": "https://s3.amazonaws.com/keybase_processed_uploads/4c7cff041ee54c71fd25595898133505_360_360.jpg",
        "location": "Maine",
        "username": "chris",
        "full_name": "Chris Coyne",
        "keybase_url": "https://keybase.io/chris",
        "pgp_fingerprint": "94aa3a5bdbd40ea549cabaf9fbc07d6a97016cb3",
        "crypto_addresses": [
            {
                "type": "bitcoin",
                "address": "3LKaAcHgUja3B3ZwfJjxVdqWbxd71pE6NK"
            },
            {
                "type": "zcash",
                "address": "t1KiyNNYFy7jEEFsveRJjTaDzE1MtfT2FSx"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T11:39:56.616Z",
        "request_id": "bdb9e3f5-4a39-4a48-947e-f6804ee8891c"
    },
    "status": "ok",
    "message": "User retrieved successfully",
    "success": true
}