/v1/capability
Process capability Cp/Cpk
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/sixsigma-api/v1/capability" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sixsigma-api/v1/capability", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sixsigma-api/v1/capability");
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/sixsigma-api/v1/capability",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"cp": 1.3333,
"cpk": 1.3333,
"cpl": 1.3333,
"cpu": 1.3333,
"note": "Cp = (USL−LSL)/6σ; Cpk = min((USL−μ)/3σ, (μ−LSL)/3σ). A centred Cpk of 1.33 is the classic capable-process target. DPMO uses the normal tails; sigma level adds the 1.5σ shift.",
"inputs": {
"lsl": 2,
"usl": 10,
"mean": 6,
"sigma": 1
},
"expected_dpmo": 63.342,
"expected_yield": 0.999936658,
"process_sigma_level": 5.3328
},
"meta": {
"timestamp": "2026-06-05T21:48:48.860Z",
"request_id": "483f95da-6e41-451c-9fc1-2f3669e6fe78"
},
"status": "ok",
"message": "Process capability",
"success": true
}