/v1/network
Live VeChainThor chain tip and dual-token info
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/vechain-api/v1/network" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vechain-api/v1/network", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vechain-api/v1/network");
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/vechain-api/v1/network",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"chain": "vechainthor",
"source": "VeChain",
"tip_id": "0x017e567c52f7c864bdbcb511c24a0a2b86b4b6486381b2b536e49353cde6c23f",
"gas_token": "VTHO",
"tip_number": 25056892,
"native_token": "VET",
"tip_gas_used": 476193,
"tip_tx_count": 2,
"tip_gas_limit": 40000000,
"tip_timestamp": "2026-06-10T14:01:40.000Z",
"tip_beneficiary": "0x3624f8c097c7e20b37df136339dd2f6feffa3db0",
"tip_gas_used_pct": 1.19
},
"meta": {
"timestamp": "2026-06-10T14:01:38.324Z",
"request_id": "726cb4cd-b53e-4031-badd-4382725dc270"
},
"status": "ok",
"message": "Network state retrieved successfully",
"success": true
}