/v1/proofs
A user's proven-accounts graph + crypto addresses
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/keybase-api/v1/proofs" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/keybase-api/v1/proofs", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/keybase-api/v1/proofs");
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/proofs",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 6,
"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"
}
],
"username": "chris",
"crypto_addresses": [
{
"type": "bitcoin",
"address": "3LKaAcHgUja3B3ZwfJjxVdqWbxd71pE6NK"
},
{
"type": "zcash",
"address": "t1KiyNNYFy7jEEFsveRJjTaDzE1MtfT2FSx"
}
]
},
"meta": {
"timestamp": "2026-06-09T11:39:56.333Z",
"request_id": "a59a9191-00fc-4259-812a-2ed78242868d"
},
"status": "ok",
"message": "Proofs retrieved successfully",
"success": true
}