/v1/yield
Rolled throughput yield
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}