Skip to content

Validation API

Run the honest de-bias gauntlet on a backtest from your own code — the same deterministic engine behind the free validator and the signed report, exposed as a metered REST endpoint with an API key. For quant shops, tools, and developers who want to falsify edges programmatically.

POST /api/v1/validate

Run the honest de-bias gauntlet on a backtest, programmatically. Same engine as the free validator.

curl -X POST https://edgeproven.com/api/v1/validate \
  -H "X-API-Key: ep_live_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "unit": "R",
    "trials": 25,
    "trades": [
      {"date": "2021-03-04", "ticker": "AAPL", "r": 0.8},
      {"date": "2021-04-12", "ticker": "TSLA", "r": -1.0}
    ]
  }'

Auth: X-API-Key header (Pro+).

Body: a trade list (trades: rows of r/return + optional date, ticker) or an equity_curve; set unit (R/percent/fraction) and trials (variants you tried).

Returns: the verdict (SURVIVES_FREE_CHECKS LIKELY_ARTIFACT), the full diagnostic panel, the honest limits, and the disclaimer. Deterministic — same trades in, same verdict out.

Rate-limited per key. The verdict is identical to the free tool and the signed report — you pay for programmatic access, never a better grade.

Need volume, a custom integration, or the embed for your own product?

Talk to us →