tools/text/string inspector
// textnew

string inspector

length, bytes, unicode, entropy, character frequency

chars
bytes (utf-8)
words
lines
unique chars
entropy (bits/char)
character frequency
paste or type text…
curl -sX POST 'https://api.whittly.dev/v1/string/inspect' \
  -H 'Authorization: Bearer $WHITTLY_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"input":"hello, world!"}'
const res = await fetch('https://api.whittly.dev/v1/string/inspect', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer ' + apiKey,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ input: "hello, world!" }),
});
const data = await res.json();
const { data } = await axios.post(
  'https://api.whittly.dev/v1/string/inspect',
  { input: "hello, world!" },
  { headers: { Authorization: 'Bearer ' + apiKey } }
);
// prohistory syncpro·bulk analysis via APIproupgrade →
// history
Pro Cloud Sync — upgrade
no operations yet