Monitoring Layer
Behavior-AI
Coming soonBehavioral biometrics monitoring — detects account takeover by analyzing typing patterns, navigation behavior and session anomalies.
This plugin is in development. The API schema below is planned and subject to change. You can design your integration now using this reference.
Endpoint
POST
/api/behavior/analyzeRequest parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
session_id | string | Yes | Your session reference. |
customer_id | string | Yes | Your internal customer reference. |
events | array | Yes | List of behavioral events: keystroke timings, mouse movements, touch patterns. |
Response fields
| Parameter | Type | Required | Description |
|---|---|---|---|
data.anomaly_score | integer | Yes | Behavioral anomaly score 0–1000. |
data.is_legitimate_user | boolean | Yes | Whether behavior matches known customer profile. |
data.risk_signals | array | Yes | Detected anomaly signals. |
cURL
# Coming soon
curl -X POST \
https://shield.kodexa.systems/api/behavior/analyze \
-H "Content-Type: application/json" \
-d '{...}'Code examples available when plugin launches