Singularize Word API

Find the singular form of a word.

GET
https://api.apileague.com/singularize-word
Example Request and Response
GET
https://api.apileague.com/{{ examples.getSingularizeWord }}
{
    "original": "parties",
    "singular": "party"
}
cURL
Java
Javascript
Python
Go
C#
 {{ codeCopyText }}
 {{ codeCopyText }}
 {{ codeCopyText }}
 {{ codeCopyText }}
 {{ codeCopyText }}
 {{ codeCopyText }}

Pluralize Word API

Find the plural form of a word.

GET
https://api.apileague.com/pluralize-word
Example Request and Response
GET
https://api.apileague.com/{{ examples.getPluralizeWord }}
{
    "original": "party",
    "plural": "parties"
}
cURL
Java
Javascript
Python
Go
C#
 {{ codeCopyText }}
 {{ codeCopyText }}
 {{ codeCopyText }}
 {{ codeCopyText }}
 {{ codeCopyText }}
 {{ codeCopyText }}

Frequently Asked Questions

Does it handle irregular words?

Yes, the API is designed to handle both regular rules (adding 's') and irregular cases (e.g., "child" to "children", "mouse" to "mice").

Can it process multiple words at once?

Currently, the API processes one word at a time to ensure accuracy for that specific term.

Is it case-sensitive?

The API generally handles case gracefully, but for best results, standard casing (lowercase for common nouns) is recommended.

How is the Word Singularization/Pluralization API different from the Stem Text API?

The Word Singularization/Pluralization API specifically converts words between singular and plural forms, while the Stem Text API reduces words to their root form (e.g., "running" to "run").

Questions? Need Help? Ask Away