/v1/activation-energy
Activation energy (two-point)
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/arrhenius-api/v1/activation-energy" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/arrhenius-api/v1/activation-energy", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/arrhenius-api/v1/activation-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/arrhenius-api/v1/activation-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": {
"k1": 1,
"k2": 1.9,
"note": "Two-point Arrhenius. A positive Ea means the rate rises with temperature.",
"formula": "Ea = R·ln(k2/k1) / (1/T1 − 1/T2); A = k1·exp(Ea/RT1).",
"pre_exponential": 437886570,
"temperature_1_K": 300,
"temperature_2_K": 310,
"activation_energy": {
"J_per_mol": 49631.0323,
"kJ_per_mol": 49.631032
}
},
"meta": {
"timestamp": "2026-06-04T10:18:56.746Z",
"request_id": "e0562476-aac6-4ef6-b683-fc6486016e79"
},
"status": "ok",
"message": "Activation energy (two-point)",
"success": true
}