Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/ton-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/ton-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ton-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ton-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/ton-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": {
        "note": "Balances are in TON (1 TON = 1e9 nanoTON). Addresses accept raw (0:../-1:..) or user-friendly (EQ../UQ..) form. Data is cached briefly to protect the keyless rate-limited upstream; it only changes per block (~5s).",
        "source": "toncenter public API (toncenter.com/api/v2, live)",
        "service": "ton-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/account": "Balance, state and last transaction for an address (address=EQ.. or 0:..).",
            "GET /v1/network": "Latest TON masterchain block (the chain tip).",
            "GET /v1/transactions": "Recent transactions for an address (address=..&limit=10, max 50)."
        },
        "description": "Live on-chain data from The Open Network (TON / Toncoin), the blockchain integrated with Telegram, read from the public toncenter API. The network endpoint returns the latest masterchain block; the account endpoint returns any address's balance (TON and nanoTON), state and last-transaction reference; the transactions endpoint returns an address's most recent transactions with counterparties, value, fee and time. Live, no key, nothing stored. Blockchain/network data, distinct from the exchange-ticker and market APIs.",
        "latest_seqno": 72672042,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T16:47:29.332Z",
        "request_id": "17c8e6ce-69f4-491f-aeb8-8e27a8667ec4"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}