Skip to content

Readability

Standard · 1 credit

Analyze text readability across multiple scoring systems — Flesch-Kincaid, Gunning Fog, Coleman-Liau, SMOG, and ARI — plus reading time and text statistics.

FieldTypeRequiredDescription
textstringYesText to analyze
FieldTypeDescription
flesch_kincaid_gradenumberFlesch-Kincaid grade level
flesch_reading_easenumberFlesch reading ease score (0–100)
gunning_fognumberGunning Fog index
coleman_liaunumberColeman-Liau index
smognumberSMOG index
arinumberAutomated Readability Index
grade_levelstringConsensus grade level
reading_time_secondsnumberEstimated reading time in seconds
wordsintegerWord count
sentencesintegerSentence count
syllablesintegerSyllable count
charactersintegerCharacter count
avg_words_per_sentencenumberAverage words per sentence
avg_syllables_per_wordnumberAverage syllables per word
Terminal window
curl -X POST https://morso.dev/api/readability \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "The quick brown fox jumps over the lazy dog. Simple sentences are easy to read. Complex vocabulary and lengthy subordinate clauses increase difficulty."}'
{
"flesch_kincaid_grade": 8.2,
"flesch_reading_ease": 62.5,
"gunning_fog": 10.1,
"coleman_liau": 11.3,
"smog": 9.8,
"ari": 8.7,
"grade_level": "8th-9th grade",
"reading_time_seconds": 6.0,
"words": 25,
"sentences": 3,
"syllables": 38,
"characters": 152,
"avg_words_per_sentence": 8.3,
"avg_syllables_per_word": 1.52
}