Entanglement
Start from one suspicious wallet and expand to its whole crew. Entanglement returns the wallets structurally linked to a target — co-members of the same coordinated clusters — so a single lead becomes the full graph.
REST
L3 GET /v1/wallet/{address}/entanglement
| Field | Type | Description |
|---|---|---|
cluster_wallets | string[] | Wallets entangled with the target |
token_mint | string | Token the entanglement was observed on |
edge_count | number | Number of links backing the cluster (stronger = more co-occurrence) |
curl -H "Authorization: Bearer $API_KEY" \
"https://api.conyr.ai/v1/wallet/7xKXtg.../entanglement"{
"wallet": "7xKXtg...",
"clusters": [
{
"wallet_address": "7xKXtg...",
"cluster_wallets": ["4mNqR...", "9aBcD...", "2pQrS..."],
"token_mint": "EPjFWd...",
"edge_count": 5
}
],
"cluster_count": 1
}