Zum Inhalt springen
GET /v1/safe

Multisig configuration: owners, threshold, nonce, modules, version

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "threshold of owner_count signatures are required to execute a transaction (an M-of-N multisig).",
        "chain": "eth",
        "guard": null,
        "nonce": 8,
        "owners": [
            "0xE4Df0cdC9eF7e388eA906226010bBD1B9A6fFeD9",
            "0xA1cf7F847eCD82459ce05a218EaA38a9D92E7b6b",
            "0xD68f1A882f3F9ffddaBd4D30c4F8Dfca1f9e51Ba",
            "0xFcf00B0fEdBc8f2F35a3B8d4B858d5805f2Bb05D",
            "0x8fd960F1B9D68BAD2B97bD232FB75CC1f186B064"
        ],
        "source": "Safe",
        "address": "0x0DA0C3e52C977Ed3cBc641fF02DD271c3ED55aFe",
        "modules": [
            "0x0d70332CEB7F3C94b061cda48327891E3449A9E1"
        ],
        "version": "1.3.0",
        "threshold": 3,
        "master_copy": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552",
        "owner_count": 5,
        "fallback_handler": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:15.892Z",
        "request_id": "afea64e0-d705-4511-83c8-05195e580497"
    },
    "status": "ok",
    "message": "Safe retrieved successfully",
    "success": true
}