/v1/energy
TNT energy
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}