/v1/activation-energy
Activation energy (two-point)
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}