Zum Inhalt springen
GET /v1/meta

Service metadata & live sample

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "sample": {
            "address": "0x1",
            "modules": 150
        },
        "source": "Aptos fullnode REST API (/accounts/{addr}/modules), keyless",
        "service": "aptosmodules-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/module": "Full ABI of one module: functions + structs (address=0x1, name=coin).",
            "GET /v1/modules": "List the Move modules at an account with function/struct counts (address=0x1).",
            "GET /v1/functions": "Callable functions of a module, filterable (address, name, kind=entry|view|public|all)."
        },
        "description": "Inspect the Move smart-contract code published at any Aptos account, live from the public Aptos fullnode REST API. List an account's modules, read any module's full ABI (exposed functions with visibility/entry/view/params/returns + structs), or filter to the callable entry and view functions. The on-chain interface layer for Aptos wallets, explorers and SDK generators. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:07.614Z",
        "request_id": "af9c5b62-83e7-49ac-8530-e78d9a447d66"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}