Winovate · API · Pricing

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
}

OpenAPI JSON → · Pricing →

Errors & limits

Free allowance resets monthly. Past the free tier you pay $0.05 per request.