Vai al contenuto
GET /v1/activation-energy

Activation energy (two-point)

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/arrhenius-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "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
}