API ReferenceEntanglement
Live

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

FieldTypeDescription
cluster_walletsstring[]Wallets entangled with the target
token_mintstringToken the entanglement was observed on
edge_countnumberNumber 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
}

edge_count ranks how tightly a wallet sits in the cluster — use it to prioritize which links to investigate first. Entanglement shares the coordination graph behind Bundles and Entities, viewed from a single wallet outward.