/v1/meta
Service metadata & live sample
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/suimodules-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/suimodules-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/suimodules-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/suimodules-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"sample": {
"modules": 65,
"package": "0x2"
},
"source": "public Sui fullnode JSON-RPC (sui_getNormalizedMoveModulesByPackage / ...Module / ...Function), keyless",
"service": "suimodules-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/module": "Normalized ABI of one module: functions + structs (package=0x2, module=coin).",
"GET /v1/package": "List the Move modules in a package with function/struct counts (package=0x2).",
"GET /v1/function": "A single function's normalized signature (package=0x2, module=coin, function=value)."
},
"description": "Inspect the Move code published in any Sui package, live from a public Sui fullnode JSON-RPC. List a package's modules, read a module's normalized ABI (exposed functions with visibility/entry/type-params/params/returns + structs), or drill into a single function. The callable-interface layer for Sui wallets, explorers and SDK generators. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:04:06.989Z",
"request_id": "426ec9bc-7dfd-4385-8825-858706a026e1"
},
"status": "ok",
"message": "Meta",
"success": true
}