InputPOST /api/v1/x402/multi-outcome-normalize
{
"prices": [
0.2,
0.3,
0.6
]
}
Signal normalize · signal-normalize
Normalize multi-outcome prices into a probability simplex. Call when turning raw multi-outcome quotes into probs that sum to 1. Returns normalized probs and sum as deterministic JSON for $0.001 USDC via x402 on Base. First-party local math only—no RPC, live market feed, API keys, storage, or mediagen. Advisory only; the caller owns capital, risk, and production controls.
One-command purchase
No account or API key. AgentCash reads the 402 challenge, pays no more than the declared cap, retries the request and returns the result.
npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/multi-outcome-normalize -m POST -H 'x-delx-source: product-page' --max-amount 0.001 -b '{"prices":[0.2,0.3,0.6]}'
{
"prices": [
0.2,
0.3,
0.6
]
}
{
"schema": "delx/util-multi-outcome-normalize/v1",
"prices": [
0.2,
0.3,
0.6
],
"probs": [
0.18181818181818182,
0.2727272727272727,
0.5454545454545454
],
"sum": 1.1,
"n": 3
}
Machine-readable evidence