The Text Stemming API is used to get the root form of a word. It is useful for searching and natural language processing.
{
"original": "The laziest dogs are jumping over the quicker brown foxes",
"stemmed": "The laziest dog are jump over the quicker brown fox"
} {{ codeCopyText }}
{{ codeCopyText }}
{{ codeCopyText }}
{{ codeCopyText }}
{{ codeCopyText }}
{{ codeCopyText }}
Stemming is the process of reducing a word to its base or root form. For example, "fishing", "fished", and "fisher" all stem to "fish".
The API uses algorithmic stemming which handles many common cases, but it may not always perfectly handle all irregular verbs compared to lemmatization.
Yes, stemming is commonly used in search engines to match queries with documents containing different variations of the same word.
The Stem Text API reduces words to their root form (e.g., "running" to "run"), while the Word Singularization/Pluralization API specifically converts words between singular and plural forms.