CRYPTYX Docs
← API Reference
Signals

Backtest a signal over a date range

post/api/signals/backtest

Authentication

Stytch session JWT or Bearer API key (cx_...).

Request body

Content-Type: application/json
signal_idrequired
string
fromrequired
string<date>
torequired
string<date>
dryrun
boolean

Responses

200Backtest results
ok
boolean
signal_id
string
from
string
to
string
dryrun
boolean
totalDays
integer
triggeredDays
integer
triggerRate
number
totalTriggerEvents
integer
avgConfidence
number | null
days
array<object>
durationMs
integer

Example request

curl -X POST 'https://cryptyx.ai/api/signals/backtest' \
  -H 'Authorization: Bearer cx_...' \
  -H 'Content-Type: application/json' \
  -d '{ ... }'
Try it live in the Playground (auth required to execute).