Find the singular form of a word.
Name | Example | Description |
---|---|---|
word | airplanes | The (noun) word for which the singular form should be found. |
api-key | abcd1234 | Your API key. |
{
"original": "parties",
"singular": "party"
}
Copy Codecurl -X GET 'https://api.apileague.com/singularize-word?word=parties' \ -H 'x-api-key: myapikey'
Response Headers:
Content-Type: application/json
X-API-Quota-Request: The number of tokens used by the request
X-API-Quota-Used: The number of tokens used in total today
X-API-Quota-Left: The number of tokens left today (depends on your plan)
Find the plural form of a word.
Name | Example | Description |
---|---|---|
word | party | The (noun) word for which the plural form should be found. |
api-key | abcd1234 | Your API key. |
{
"original": "party",
"plural": "parties"
}
Copy Codecurl -X GET 'https://api.apileague.com/pluralize-word?word=party' \ -H 'x-api-key: myapikey'
Response Headers:
Content-Type: application/json
X-API-Quota-Request: The number of tokens used by the request
X-API-Quota-Used: The number of tokens used in total today
X-API-Quota-Left: The number of tokens left today (depends on your plan)