Beste gratis Woord Karakter Teen
Tel woorde, karakters, sinne en leestyd onmiddellik ← vry, niks gestoor nie.
Hoe dit werk
- Plak teks. Laat val of tik jou teks binnein die boks.
- Tel:. Druk Tel woorde na lang woorde, karakters, sinne, paragrawe en lyne.
- Lees die statistiek. Sien elke figuur tegelyk, onder andere'n geraamde leestyd.
Aangaande hierdie stuk gereedskap
Paste any text and get an instant breakdown: words, characters (with and without spaces), sentences, paragraphs, lines and an estimated reading time. It's built for anyone working to a limit — an essay word count, a meta description character cap, a social post, or a script timed for reading aloud. Everything is counted from the text you submit and nothing is kept afterwards; there's no signup and no length paywall up to a generous limit.
Wat mense dit gebruik
- Slaan'n opstel of opdragwoordtelling
- Hou'n metabeskrywing binne sy karaktergrens
- Gaan'n sosiale pos na by die platform se pet
- Skatting hoe lank'n teks neem om hardop te lees
ontwikkelaar API
Outomate hierdie program van jou eie kode. Stuur 'n POS versoek na die punt hieronder en kry dieselfde resultaat wat die web program produseer. Dit is tempo-limited per IP en benodig geen sigup ← API sleutels vir hoër beperkings kom.
https://best.free/api/tools/word-counter/
| Parameter | Voorbeeld | Benodig | Notas |
|---|---|---|---|
text |
Paste any text here to count it. |
Ja | ≤500,000 chars. |
curl -X POST https://best.free/api/tools/word-counter/ \
-H 'Content-Type: application/json' \
-d '{"text": "Paste any text here to count it."}'
import requests
r = requests.post(
"https://best.free/api/tools/word-counter/",
json={"text": "Paste any text here to count it."},
)
print(r.json())
const r = await fetch("https://best.free/api/tools/word-counter/", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ text: "Paste any text here to count it." }),
});
const data = await r.json();
console.log(data);
Antwoord: JSON stats: words, characters, sentences, reading time…
{"ok": true, "stats": {"words": 7, "characters": 32, "reading_time": 1}}