Ir al contenido
GET /v1/activation-energy

Activation energy (two-point)

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/arrhenius-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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