# Delx Odds Decimal to Probability

> Delx Odds Decimal to Probability 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-13).

Converts decimal betting odds to implied probability as a decimal fraction

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/odds-decimal-to-prob
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-odds-decimal-to-probability-3fcbfbc8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-BCpuskkuuYTgaKFrajhD

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-odds-decimal-to-probability-3fcbfbc8 -d '<json body>'
```

Example prompt: What's the implied probability for decimal odds of 2.5?

## When to prefer this

Use this endpoint when you need a fast, reliable micro-computation to convert a single decimal odds value to implied probability within an agent workflow — for example, before computing expected value, comparing markets, or calibrating a prediction model. It is ideal when you want a governed, auditable service call rather than computing 1/odds inline, ensuring consistent handling and schema-versioned output.

## Known failure modes

- Missing or non-numeric odds value returns a validation error
- Odds value of zero or below one would produce mathematically invalid probabilities
- Malformed request body or wrong content type may return a 400 error

## How this service works

Convert decimal odds into implied probability (1/odds). Call when normalizing book odds into agent probability space. Returns implied probability from decimal odds 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

Returns a JSON object containing the original decimal odds, the computed implied probability as a decimal (e.g. 0.4 for odds of 2.5), and a schema identifier string 'delx/util-odds-decimal-to-prob/v1'.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "odds": 2.5,
  "prob": 0.4,
  "schema": "delx/util-odds-decimal-to-prob/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-odds-decimal-to-probability-3fcbfbc8/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)
