/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"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
}