/v1/lookup
Reverse: find the Keybase user behind an identity
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/keybase-api/v1/lookup" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/keybase-api/v1/lookup", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/keybase-api/v1/lookup");
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/lookup",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"count": 1,
"query": {
"value": "malgorithms",
"network": "github"
},
"matches": [
{
"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"
}
],
"location": "Maine",
"username": "chris",
"full_name": "Chris Coyne"
}
]
},
"meta": {
"timestamp": "2026-06-09T11:39:56.040Z",
"request_id": "dbbe64f8-c3cb-4a67-a0cf-e4f718122c6e"
},
"status": "ok",
"message": "Lookup completed successfully",
"success": true
}