/v1/yield
Rolled throughput yield
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/yield" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sixsigma-api/v1/yield", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sixsigma-api/v1/yield");
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/yield",
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": "RTY = Π(step yields) — the chance a unit passes every step defect-free. Normalized yield = RTY^(1/n); total DPU = −ln(RTY).",
"inputs": {
"steps": 3,
"yields": [
0.99,
0.98,
0.97
]
},
"total_dpu": 0.060712,
"normalized_yield": 0.979965985,
"rolled_throughput_yield": 0.941094,
"rolled_throughput_yield_percent": 94.1094
},
"meta": {
"timestamp": "2026-06-05T21:48:49.062Z",
"request_id": "4a6d85ec-b4f7-4438-a25a-b8c388f611b1"
},
"status": "ok",
"message": "Rolled throughput yield",
"success": true
}