Word Count
Count words, characters, sentences, and paragraphs in text up to 100,000 characters. Runs on our servers only — no third-party APIs.
Quickstart
1. Get a free API key below (or via the portal).
2. Call the gateway with Authorization: Bearer YOUR_API_KEY.
3. Copy-paste this curl (under 30 seconds once you have a key):
curl -X POST https://api.winovatesolutions.com/v1/demo-wordcount/count \
-H "Authorization: Bearer $API_KEY" \
-H "content-type: application/json" \
-d '{"text":"Hello world. How are you?"}'
Get an API key
Free tier includes 1000 requests / month. No credit card required for light use.
Auth
All billable routes go through the Winovate gateway. Send:
Authorization: Bearer YOUR_API_KEY
Keys look like ag_…. Free tier: 1000 requests / month.
Endpoints
POST /count
Count words, characters, sentences, and paragraphs in text
Request
{
"text": "Hello world. How are you?"
}
Response
{
"ok": true,
"words": 5,
"characters": 25,
"sentences": 2,
"paragraphs": 1
}
Errors & limits
400— Invalid JSON or request body failed validation401— Missing or invalid API key402— Free monthly allowance exhausted; upgrade to continue429— Rate limit exceeded; slow down and retry- Max payload:
textmust be a string of at most 100,000 characters
Free allowance resets monthly. Past the free tier you pay $0.05 per request.