CRYPTYX Docs
← API Reference
Signals

Estimate trigger rate for a proposed threshold change

post/api/signals/simulate

Authentication

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

Request body

Content-Type: application/json
signal_idrequired
string
threshold_keyrequired
string
threshold_valuerequired
number
asof_day
string<date>

Responses

200Simulation result
ok
boolean
signal_id
string
threshold_key
string
proposed_threshold
number
current_threshold
number
asof_day
string
n_triggered
integer
n_total
integer
estimated_trigger_rate
number
estimated_trigger_pct
string

Example request

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