# Delx Implied From Yes/No

> Delx Implied From Yes/No is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Converts raw yes/no vote counts into implied probabilities, returning calibrated p_yes and p_no with overround disclosure.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/implied-from-yes-no
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-implied-from-yes-no-a1179201
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_11YcRhYb1gB3V2SYwucql

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability delx-implied-from-yes-no-a1179201 -d '<json body>'
```

Example prompt: I have 52 'yes' votes and 74 'no' votes from a poll — can you calculate the implied probability for each outcome and tell me the overround?

## When to prefer this

Use this endpoint when you have raw binary vote, odds, or count data and need normalized implied probabilities with explicit overround disclosure, particularly in prediction market, polling, or binary classification contexts where calibration and margin transparency matter.

## Known failure modes

- Missing or non-numeric yes/no values returns a validation error
- Both yes and no equal zero causes division-by-zero or undefined probability
- Negative input values may return an error or unexpected results
- Non-numeric strings in yes or no fields return a 400-level error

## How this service works

Normalize yes/no prices into implied probabilities. Call when two-sided prediction markets quoted as separate yes and no. Returns normalized yes/no probs 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.

## Output

A JSON object with p_yes (float), p_no (float), schema identifier string ('delx/util-implied-from-yes-no/v1'), and overround (float representing the total probability excess above 1.0, indicating implied market margin).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "no": {
   "type": "number",
   "description": "Input field: no."
  },
  "yes": {
   "type": "number",
   "description": "Input field: yes."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "p_no": 0.5961538461538461,
  "p_yes": 0.4038461538461538,
  "schema": "delx/util-implied-from-yes-no/v1",
  "overround": 0.04000000000000004
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-implied-from-yes-no-a1179201/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
