The coupling matrix discovers behavioral relationships across 200+ entity types and 20+ domains. Cascade prediction, regime forecasting, and automated alerting — intelligence that grows with the network.
200+ entity types share a single compressed representation. Compare a vehicle's trajectory to a network link's behavior — the math is the same.
When a regime change in one domain triggers behavioral shifts in another, VectorScaleDB detects the ripple effect automatically.
/v1/query/cascade-predict.From detection to notification in milliseconds. Webhook-driven alerts when behavioral cascades emerge.
Find similar behaviors regardless of domain. Take a known pattern from one entity type and search for it across all others.
/v1/query/anomaly-score computes deviation from baselines across all entity types in a single call. An entity that is normal within its own domain but anomalous in the cross-domain context gets flagged.Detect cross-domain cascades and query anomaly scores across entity types.
# Score anomaly level for an entity across all domain baselines
curl -X POST "https://api.vectorscaledb.com/v1/query/anomaly-score" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"entity_id": "supply-chain-node-42",
"time_range": {
"start": "2026-03-09T00:00:00Z",
"end": "2026-03-09T12:00:00Z"
},
"cross_domain": true,
"include_contributing_domains": true
}'
# Predict cross-domain cascades from observed regime changes
curl -X POST "https://api.vectorscaledb.com/v1/query/cascade-predict" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"regime_changes": [
{ "domain": "energy", "regime": "high_load", "timestamp_secs": 1772020800 }
],
"predict_from": { "domain": "energy", "regime": "critical_load", "timestamp_secs": 1772022000 },
"max_lag_secs": 1800
}'
{
"cascades_detected": 2,
"predictions": [
{
"target_domain": "manufacturing",
"predicted_regime": "throttled",
"estimated_lag_secs": 252.0,
"confidence": 0.87,
"supporting_observations": 23
},
{
"target_domain": "logistics",
"predicted_regime": "rerouting",
"estimated_lag_secs": 468.0,
"confidence": 0.76,
"supporting_observations": 11
}
]
}
See how cross-domain intelligence reveals hidden correlations in your data.