/v1/meta
Service metadata & live sample
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}