GET /pronouns

Get a list of all available pronouns.

Responses

  • 200 application/json

    A JSON array of pronouns

    Hide response attributes Show response attributes object
    • canonicalName string Required

      The canonical name of the pronoun set (e.g., "they/them").

    • description string Required

      A brief description of the pronoun set.

    • normative boolean Required

      Indicates if the pronoun set is considered normative.

    • morphemes object Required

      The morpheme data for the pronoun set.

      Hide morphemes attributes Show morphemes attributes object
      • pronoun_subject string Required

        Subject pronoun (e.g., "they").

      • pronoun_object string Required

        Object pronoun (e.g., "them").

      • possessive_determiner string Required

        Possessive determiner (e.g., "their").

      • possessive_pronoun string Required

        Possessive pronoun (e.g., "theirs").

      • reflexive string Required

        Reflexive pronoun (e.g., "themself").

    • pronunciations object Required

      Pronunciation guides for the pronoun set.

    • plural boolean Required

      Indicates if the pronoun set is plural.

    • pluralHonorific boolean Required

      Indicates if the pronoun set is a plural honorific.

    • aliases array[string]

      Alternative names or aliases for the pronoun set.

    • history string

      Historical context or notes about the pronoun set.

    • pronounceable boolean Required

      Indicates if the pronoun set is easily pronounceable.

    • thirdForm string

      A third form of the pronoun set, if applicable.

    • smallForm string

      A smaller or abbreviated form of the pronoun set, if applicable.

    • sourcesInfo string

      Information about the sources of the pronoun set.

    • nullPronoun boolean Required

      Indicates if the pronoun set is a null pronoun.

    • examples array[string]

      Example sentences or phrases using the pronoun set.

    • name string Required

      A human-readable name for the pronoun set.

  • 500 application/json

    Internal server error

    Hide response attribute Show response attribute object
    • error string
GET /pronouns
curl \
 --request GET 'https://pronouns.page/api/pronouns'
Response examples (200)
[
  {
    "name": "he/him",
    "plural": false,
    "aliases": [
      "he/him"
    ],
    "history": "",
    "examples": [
      "I think he is very nice.",
      "I met him recently.",
      "Is this his dog?",
      "He told me that the house is his.",
      "He said he would rather do it himself.",
      "He is really beautiful.",
      "He answered the phone.",
      "He takes good care of his cat.",
      "He did it all by himself.",
      "He talks in his sleep.",
      "He landed the plane safely.",
      "He argues that…",
      "Did you buy him his gift?",
      "I asked him if I can borrow his pencil.",
      "I talked to him yesterday.",
      "Would you like to go to the movies with him?",
      "Can you call him when his cat awakes?",
      "His graduation starts soon.",
      "My favorite color is purple, his is yellow."
    ],
    "morphemes": {
      "reflexive": "himself",
      "pronoun_object": "him",
      "pronoun_subject": "he",
      "possessive_pronoun": "his",
      "possessive_determiner": "his"
    },
    "normative": true,
    "smallForm": null,
    "thirdForm": null,
    "description": "Normative “he/him”",
    "nullPronoun": false,
    "sourcesInfo": null,
    "canonicalName": "he",
    "pronounceable": true,
    "pronunciations": {},
    "pluralHonorific": false
  }
]
Response examples (500)
{
  "error": "Internal server error"
}