For security analysts, identifying a scoring link requires looking for irregularities in traffic flow:
zardaxt://scoring/v3/evaluate?model_id=fraud_detection_v2&apikey=XXXX&timeout_ms=500
Run the built-in REST bridge:
zctl bridge start --bind 0.0.0.0:8080 --translate zardaxt:// to http://
Now you can use a standard HTTP POST:
curl -X POST http://zardaxt-bridge:8080/scoring/v3/evaluate?model_id=fraud \
-H "X-API-Key: zXkL9qP2" -d '"user_action": "login"'
A scoring link is essentially a URL endpoint or an inter-process communication (IPC) handle that allows external applications to send a payload (e.g., a transaction record, a user session) and receive a score (e.g., 0.00 to 1.00 probability of fraud). It acts as the bridge between the Zardaxt OS kernel and your external infrastructure. zardaxt os scoring link