Vai al contenuto
GET /v1/proofs

A user's proven-accounts graph + crypto addresses

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/keybase-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}