Aller au contenu
GET /v1/temperature-effect

Rate ratio for a temperature change

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/arrhenius-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/arrhenius-api/v1/temperature-effect" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/arrhenius-api/v1/temperature-effect", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/arrhenius-api/v1/temperature-effect");
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/temperature-effect",
    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": {
        "q10": 1.909088,
        "note": "Rate ratio when going from T1 to T2. Q10 is the factor per 10 K rise near T1.",
        "formula": "k2/k1 = exp(−Ea/R·(1/T2 − 1/T1)).",
        "temperature_1_K": 300,
        "temperature_2_K": 310,
        "activation_energy": {
            "J_per_mol": 50000,
            "kJ_per_mol": 50
        },
        "rate_ratio_k2_over_k1": 1.90908785
    },
    "meta": {
        "timestamp": "2026-06-04T10:18:56.947Z",
        "request_id": "74329fa2-528e-4b72-9f9c-604b9f2d15b3"
    },
    "status": "ok",
    "message": "Rate ratio for a temperature change",
    "success": true
}