Zum Inhalt springen
GET /v1/activation-energy

Activation energy (two-point)

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/arrhenius-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}