Singularize Word API

Find the singular form of a word.

GET
https://api.apileague.com/singularize-word

Parameters

Name Example Description
word
s r q
airplanesThe (noun) word for which the singular form should be found.
api-key
s r q
abcd1234Your API key.
Example Request and Response
GET
https://api.apileague.com/singularize-word?word=parties
{
    "original": "parties",
    "singular": "party"
}
cURL
Java
Javascript
Python
Go
C#
 Copy Codecurl -X GET 'https://api.apileague.com/singularize-word?word=parties' \ -H 'x-api-key: myapikey'

Headers

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)

Quotas

Calling this endpoint costs
1 token

Pluralize Word API

Find the plural form of a word.

GET
https://api.apileague.com/pluralize-word

Parameters

Name Example Description
word
s r q
partyThe (noun) word for which the plural form should be found.
api-key
s r q
abcd1234Your API key.
Example Request and Response
GET
https://api.apileague.com/pluralize-word?word=party
{
    "original": "party",
    "plural": "parties"
}
cURL
Java
Javascript
Python
Go
C#
 Copy Codecurl -X GET 'https://api.apileague.com/pluralize-word?word=party' \ -H 'x-api-key: myapikey'

Headers

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)

Quotas

Calling this endpoint costs
1 token