AnyWordCount

API Documentation

Integrate our text analysis tools into your applications

Getting Started

Our API provides programmatic access to all text analysis features. To get started, you'll need an API key. Contact us to obtain your API credentials.

Authentication

All API requests require authentication using your API key in the request header:

Authorization: Bearer YOUR_API_KEY

Endpoints

Text Analysis

POST /api/analyze

Analyze text and get comprehensive statistics.

Request Body:
{
    "text": "Your text to analyze"
}
Response:
{
    "success": true,
    "data": {
        "wordCount": 100,
        "charCount": 500,
        "charCountNoSpaces": 420,
        "sentenceCount": 5,
        "paragraphCount": 2,
        "readingTime": "0.5 min",
        "readabilityScore": 70,
        "syllableCount": 150,
        "averageWordLength": 5,
        "longestWord": "example",
        "uniqueWords": 80,
        "complexity": {
            "simpleWords": 75,
            "complexWords": 25,
            "readabilityLevel": "intermediate"
        }
    }
}

Rate Limits

The API is rate-limited to 1000 requests per hour per API key. If you exceed this limit, you'll receive a 429 Too Many Requests response.

Error Handling

The API uses standard HTTP response codes to indicate success or failure:

  • 200: Success
  • 400: Bad Request
  • 401: Unauthorized
  • 429: Too Many Requests
  • 500: Internal Server Error

Example Code

cURL

curl -X POST "https://anywordcount.com/api/analyze" \
     -H "Authorization: Bearer YOUR_API_KEY" \
     -H "Content-Type: application/json" \
     -d '{"text": "Your text to analyze"}'

JavaScript

fetch('https://anywordcount.com/api/analyze', {
    method: 'POST',
    headers: {
        'Authorization': 'Bearer YOUR_API_KEY',
        'Content-Type': 'application/json'
    },
    body: JSON.stringify({
        text: 'Your text to analyze'
    })
})
.then(response => response.json())
.then(data => console.log(data));

PHP

$ch = curl_init('https://anywordcount.com/api/analyze');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Authorization: Bearer YOUR_API_KEY',
    'Content-Type: application/json'
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode([
    'text' => 'Your text to analyze'
]));

$response = curl_exec($ch);
$data = json_decode($response, true);
curl_close($ch);

Saved Texts

Your Stats

  • Words Processed: 0
  • Texts Saved: 0
  • Last Visit: Never