/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.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/aptosview-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aptosview-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aptosview-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/aptosview-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": {
"chain_id": 1
},
"source": "Aptos fullnode REST API (POST /view), keyless",
"service": "aptosview-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/view": "Call any Move view function (function=0x1::coin::balance, type_arguments, arguments).",
"GET /v1/supply": "Total supply of a coin (coin — defaults to APT).",
"GET /v1/balance": "Coin balance of an address (address, coin — defaults to APT)."
},
"description": "Execute read-only Move view functions on Aptos, live via the public fullnode REST API — Aptos's equivalent of eth_call. Run any #[view] function with type and value arguments and get its return value, or use the convenience endpoints for a coin balance and total supply. The on-chain read layer for Aptos wallets, dashboards and bots. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:04:05.975Z",
"request_id": "6825e667-1720-4ea6-b6af-af1df34feed5"
},
"status": "ok",
"message": "Meta",
"success": true
}