Skip to content
GET /v1/meta

Spec

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/aptos-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "source": "Aptos public fullnode REST API (live)",
        "service": "aptos-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/account": "An address's state (address=0xd503b95164384a5ebbccbb5c4bdc8b4a5893d9651e9953abda8e1c22fcc1181d).",
            "GET /v1/balance": "Balance of APT or any coin/FA (address=, asset=APT).",
            "GET /v1/network": "Live Aptos chain state: chain id, ledger version, block height, epoch.",
            "GET /v1/resources": "The Move resource types an account holds (address=).",
            "GET /v1/transactions": "An address's recent transactions (address=, limit)."
        },
        "description": "Live on-chain data from the Aptos blockchain (APT), a high-throughput Move Layer 1, from the official public fullnode REST API: any address's state (sequence number, auth key, APT balance, resource count); the balance of APT or any coin/fungible asset (handling both the coin and fungible-asset standards); the Move resource types an account holds; the account's recent transactions (version, hash, entry function, success, gas, time); and the live chain state (chain id, ledger version, block height, epoch, timestamp). Live, no key, nothing stored. Distinct from the XRP Ledger, Stellar, TRON, EVM and Solana on-chain APIs and from price feeds — this is Aptos account state, balances, Move resources, transactions and ledger health.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T20:24:53.327Z",
        "request_id": "c60ccccc-1c77-4043-a7ce-cde891f60775"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}