/v1/meta
Service metadata & live sample
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/safe-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/safe-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/safe-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Both endpoints take a chain (short code eth, pol, base, arb1, oeth, gno, bnb, avax... or a numeric chain id like 1, 137, 8453) and a Safe address (0x + 40 hex). Returns 404 if the address is not a Safe on that chain.",
"sample": {
"address": "0x0DA0C3e52C977Ed3cBc641fF02DD271c3ED55aFe",
"threshold": 3,
"owner_count": 5
},
"source": "Safe Transaction Service open API (api.safe.global), live",
"service": "safe-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/safe": "Multisig configuration: owners, threshold, nonce, modules, version (chain, address).",
"GET /v1/balances": "The Safe's native + ERC-20 token balances (chain, address)."
},
"description": "Inspect any Safe (formerly Gnosis Safe) multisig smart wallet, keyless. For any Safe address on any supported chain: the owner signers, the signature threshold (the M-of-N), the current nonce, enabled modules, guard and contract version, plus the Safe's native and ERC-20 token balances. The multisig-inspection layer for DAO treasuries, security, due-diligence, wallet and dashboard tooling. Live, nothing stored beyond a short cache. Backed by the open Safe Transaction Service.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:04:15.981Z",
"request_id": "e73d96ea-4629-4866-80bc-f75e4742797c"
},
"status": "ok",
"message": "Meta",
"success": true
}