/v1/meta
Service metadata
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/movement-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/movement-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/movement-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/movement-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"vm": "MoveVM (Aptos-compatible)",
"name": "Movement Network API",
"source": "Movement Network public fullnode REST (mainnet.movementnetwork.xyz)",
"endpoints": [
{
"path": "/v1/status",
"description": "Ledger status: chain id, epoch, ledger version, block height"
},
{
"path": "/v1/block",
"description": "Block by height (?height=; omit for latest)"
},
{
"path": "/v1/transactions",
"description": "Recent transactions (?limit=25)"
},
{
"path": "/v1/account",
"description": "Account info and resource count (?address=0x1)"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"disclaimer": "Unofficial proxy of the public Movement Network fullnode. Not affiliated with Movement. Data only; no guarantees of accuracy or availability.",
"description": "On-chain data for Movement Network (chain-id 126), a Move-based Layer 2 with an Aptos-compatible REST interface. Exposes ledger status, blocks by height, recent transactions and account information.",
"native_token": {
"symbol": "MOVE"
}
},
"meta": {
"timestamp": "2026-06-15T11:15:11.018Z",
"request_id": "ca8e7020-cdc0-48b8-bd5f-dcc21535e857"
},
"status": "ok",
"message": "Meta",
"success": true
}