🔌 API Access
REST API Endpoint:
POST /api/analyze
Content-Type: application/json
{
"text": "Your text here"
}
JavaScript Integration:
fetch('https://api.readability.com/analyze', {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({text: yourText})
}).then(res => res.json())
.then(data => console.log(data));
Response Format:
{
"fleschEase": 65.2,
"fleschKincaid": 8.5,
"gunningFog": 10.2,
"smog": 9.8,
"colemanLiau": 9.1,
"wordCount": 150,
"sentenceCount": 10,
"syllableCount": 245
}