/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/nearview-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nearview-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nearview-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/nearview-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": {
"symbol": "USDt",
"decimals": 6
},
"source": "public NEAR JSON-RPC (query / call_function), keyless",
"service": "nearview-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/view": "Call any contract view method (contract=..., method=ft_metadata, args={...}).",
"GET /v1/token": "NEP-141 token metadata + total supply (contract=usdt.tether-token.near).",
"GET /v1/balance": "An account's NEP-141 token balance (contract, account)."
},
"description": "Execute read-only contract view methods on NEAR via public NEAR RPC — NEAR's equivalent of eth_call. Call any contract's view method with JSON args, or use the convenience endpoints for NEP-141 token metadata + total supply and an account's token balance. The on-chain read layer for NEAR wallets, dashboards and bots. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:04:00.269Z",
"request_id": "2e097026-fa05-43fa-83f3-567818974bb3"
},
"status": "ok",
"message": "Meta",
"success": true
}