23 September 2025
Composable Commerce
HTTP API
Enhancement
Product catalogSearch
We've added fuzzy search to Product Search in public beta, allowing you to deliver more relevant search results by accounting for typos and misspellings in customer's search queries.
When you use fuzzy search on a text field, the search query for that field will also match values that are within a certain level distance. For example, searching for "shurt" may now return "shirt" as a match, which improves the user experience when typos occur.

Changes:

  • [API] Added the fuzzy search expression to the search query language used in Product Search, Customer Search, and Business Unit Search.

Example query:

Fuzzy search query that matches 'shirt' when searching for 'shurt'json
{
  "query": {
    "fuzzy": {
      "field": "name",
      "value": "shurt",
      "level": 1,
      "language": "en"
    }
  }
}