/v1/energy
TNT energy
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/tnt-api/v1/energy" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tnt-api/v1/energy", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tnt-api/v1/energy");
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/tnt-api/v1/energy",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "1 kg of TNT releases 4.184 MJ (the conventional value). 1 kiloton = 10⁶ kg TNT = 4.184 TJ.",
"inputs": {
"mass_kg": 1000
},
"energy_gj": 4.184,
"energy_mj": 4184,
"tnt_kilotons": 0.001,
"energy_joules": 4184000000
},
"meta": {
"timestamp": "2026-06-05T11:30:31.499Z",
"request_id": "32b85eb7-00ab-4951-95cf-58eda3fdba7e"
},
"status": "ok",
"message": "TNT energy",
"success": true
}