/v1/yield
Rolled throughput yield
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}