find_similar_nodes
readSince v1.0Find nodes with similar names that might be duplicates. Uses string similarity matching. Useful before creating new nodes to avoid duplication.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
locale | String | — | [find_similar_nodes] Optional locale code to return translated names. | |
node_type | String | — | [find_similar_nodes] Limit similarity search to nodes of this type. | |
threshold | Number | — | 0.8 | [find_similar_nodes] Similarity threshold between 0.0 and 1.0. Pairs scoring above this are returned. Default: 0.8. |
Example Request
{"node_type": "Feature", "threshold": 0.8}Example Response
{"groups": [{"similarity": 0.92, "nodes": [{"id": "uuid-1", "label": "Auth Integration"}, {"id": "uuid-2", "label": "OAuth Integration"}]}]}