About this endpoint
What it does
Performs a fuzzy search by comparing a source search term against a target string of space-separated words, then returns the matching words as a JSON array of strings.
Query Parameter(s)
| Attribute | Type | Mandatory | Description |
|---|---|---|---|
| accent-insensitive | Boolean | No | Default: false |
| unicode-normalized | Boolean | No | Default: false |
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| source | String | Yes | The search term. |
| target | String | Yes | Space-separated words to search within. |
Response
Returns a JSON object with a data array field containing strings. The data array holds the matching words found by the fuzzy search.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| data | String Array | Yes | Matching words returned by the fuzzy search. |