/v1/tolerance
Tolerance band by accuracy class
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/rtd-api/v1/tolerance" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rtd-api/v1/tolerance", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rtd-api/v1/tolerance");
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/rtd-api/v1/tolerance",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "IEC 60751 grades RTD accuracy by class: AA ±(0.10 + 0.0017·|T|), A ±(0.15 + 0.002·|T|), B ±(0.30 + 0.005·|T|), C ±(0.60 + 0.010·|T|) in °C — the error grows with distance from 0 °C. Class B is the everyday industrial grade; AA/A for precision work. Self-heating from the measuring current and lead resistance add to this on top, so keep the excitation low and use a 3/4-wire hookup.",
"inputs": {
"r0_ohm": 100,
"temp_c": 100,
"accuracy_class": "B"
},
"tolerance_c": 0.8,
"tolerance_ohm": 0.3034
},
"meta": {
"timestamp": "2026-06-07T08:18:00.701Z",
"request_id": "374fcaa3-710d-420f-b04d-7eed21a448bc"
},
"status": "ok",
"message": "Tolerance",
"success": true
}