/v1/yield
Rolled throughput yield
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}