Ir al contenido
GET /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.

Encabezados personalizados (opcional)
api.oanor.com/suimodules-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}