Enterspeed Product Updates logo

Product Updates

See the latest new features, improvements, and product updates

Subscribe to Updates

Labels

  • All Posts
  • Fix
  • Feature
  • Improvement
  • Announcement
  • Product Update
  • 🤫 Teaser
  • 🛠 Service
  • 💡 Tip

Jump to Month

  • July 2026
  • June 2026
  • April 2026
  • March 2026
  • December 2025
  • November 2025
  • October 2025
  • September 2025
  • May 2025
  • April 2025
  • March 2025
  • February 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • July 2024
  • May 2024
  • April 2024
  • March 2024
  • February 2024
  • January 2024
  • December 2023
  • September 2023
  • August 2023
  • July 2023
  • June 2023
  • April 2023
  • January 2023
  • November 2022
  • September 2022
  • June 2022
  • March 2022
  • January 2022
  • December 2021
  • November 2021
Powered by

Create yours, for free!

Feature
4 days ago

Fuzzy search comes to the Query API

Nobody types perfectly. A shopper searching your site will mistype "televisiom", drop a letter, or add one too many – and until now, that meant no results.

The Enterspeed Query API now supports fuzzy search, so small typos no longer return an empty result. Instead of demanding an exact match, it finds the closest results and ranks them by relevance – giving people what they're looking for, even when they don't spell it quite right.

It's a natural fit for search bars, autocomplete, and anywhere your users type freely. Fuzzy search works on analyzed text fields in your index and can be combined with your existing filters, sorting, pagination, and facets.

A quick example

Request – note the deliberate typo in televisiom:

POST https://query.enterspeed.com/v1/productIndex

{
  "search": {
    "field": "name",
    "value": "televisiom",
    "literal": false
  }
}


Response – the correct item still comes back, ranked by _score:

{
  "status": 0,
  "totalResults": 1,
  "results": [
  {
    "sku": "p-5427",
    "name": "Television",
    "url": "/products/television/",
    "_score": 1.389
  }
  ]
}


Try it in the Management App

Search is also available directly in the Query playground in the Management App – no code required. Build and tweak your query, hit run, and see results instantly.

And as a nice extra: once you've built your query, you can now just click the cURL button to copy the full cURL request based on your query. 🚀

Check out the full details in the Query API documentation.

Avatar of authorEnterspeed