The fetch method returns data in a structured JSON format. The current parser supports etymologies, definitions, pronunciations, examples, audio links, and related words.
JSON Schema:
[
{
"pronunciations": {
"text": ["pronunciation text"],
"audio": ["pronunciation audio"]
},
"definitions": [
{
"relatedWords": [
{
"relationshipType": "word relationship type",
"words": ["list of related words"]
}
],
"text": ["list of definitions"],
"partOfSpeech": "part of speech",
"examples": ["list of examples"]
}
],
"etymology": "etymology text"
}
]
[
{
"pronunciations": {
"text": ["pronunciation text"],
"audio": ["pronunciation audio"]
},
"definitions": [{
"relatedWords": [{
"relationshipType": "word relationship type",
"words": ["list of related words"]
}],
"text": ["list of definitions"],
"partOfSpeech": "part of speech",
"examples": ["list of examples"]
}],
"etymology": "etymology text",
}
]