Useful for showing a progress indicator while an incremental analysis is running. Returns how many BFS layers have completed out of the maximum depth, along with the latest provisional risk score.Documentation Index
Fetch the complete documentation index at: https://docs.wavynode.com/llms.txt
Use this file to discover all available pages before exploring further.
Request
Path parameters
| Parameter | Type | Description |
|---|---|---|
analysisId | string (uuid) | The analysis ID returned by the tracker service. Available in the investigation’s analysis_id field |
Response
Response fields
| Field | Type | Description |
|---|---|---|
analysisId | string | The analysis identifier |
status | string | Current status: pending, running, completed, or failed |
completedLayers | integer | Number of BFS depth layers that have finished processing |
maxDepth | integer | Total number of layers the analysis will process |
incremental | boolean | Whether this is an incremental (layer-by-layer) analysis |
riskScore | number | Latest provisional risk score (0–100). Updates after each layer |
patternsDetected | integer | Number of suspicious patterns detected so far |
startedAt | string | ISO 8601 timestamp of when the analysis started |
The
riskScore is provisional while the analysis is running. It may increase or decrease as deeper layers reveal more transaction patterns. The final score is set when status becomes completed.Polling strategy
Poll this endpoint every 2 seconds whilestatus is running. When completedLayers increments, fetch the new layer via Get layer result. Stop polling when status is completed or failed.