Creates a new investigation for a wallet address. Optionally triggers an incremental layer-by-layer analysis.
Creates an investigation record and, if no prior analysis exists for the wallet, triggers a background risk analysis via the tracker service.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.
"incremental": true, the tracker performs a layer-by-layer BFS analysis. Each depth layer is persisted independently so you can poll for partial results while the analysis is still running.
| Field | Type | Required | Description |
|---|---|---|---|
name | string | yes | Human-readable name for the investigation |
wallet | string | yes | Blockchain address to investigate |
chainId | string | no | Chain ID (defaults to "1" — Ethereum mainnet) |
incremental | boolean | no | When true, runs a layer-by-layer incremental analysis. Default false |
analysis_id may be empty initially if the analysis record is still being created in the background. Poll the investigation endpoint to get the updated analysis_id.incremental: true, use these endpoints to track progress and fetch layer results as they complete:
GET /v1/analysis/{analysisId}/progressGET /v1/analysis/{analysisId}/layers/{layer}Enter the full value with the ApiKey prefix. Example: ApiKey wavy_your-api-key. The prefix is required for authentication.
The project ID
Investigation name
Wallet address to investigate
Chain ID (defaults to '1' if not provided)
When true, runs a layer-by-layer incremental analysis. Each BFS depth layer is persisted independently so you can poll for partial results while the analysis is still running.