Word Master

Description: Provides comprehensive word information including definitions, usage, and etymology.

API Response Structure:

{
  "word": {
    "text": "Example",
    "pronunciation": {
      "phonetic": "/ɪɡˈzæmpəl/",
      "audio": "https://example.com/pronunciation.mp3",
      "syllables": ["ex", "am", "ple"]
    },
    "etymology": {
      "origin": "Latin",
      "rootWord": "exemplum",
      "history": "Historical development of the word..."
    }
  },
  "definitions": [
    {
      "partOfSpeech": "noun",
      "meaning": "Definition text",
      "usage": [
        {
          "sentence": "Example usage",
          "source": "Source text"
        }
      ],
      "synonyms": ["model", "instance"],
      "antonyms": ["exception"]
    }
  ],
  "variations": {
    "plural": "examples",
    "derivatives": ["exemplary", "exemplify"]
  },
  "frequency": {
    "usage": "Common",
    "trend": "Stable",
    "rank": 1500
  },
  "type": "wordMaster"
}

Fields:

  • word (object): Word information

    • text (string): The word

    • pronunciation (object): Pronunciation details

    • etymology (object): Word origin

  • definitions (array): Word meanings

  • variations (object): Word forms

  • frequency (object): Usage statistics

  • type (string): Always "wordMaster"