arrow_back All endpoints

Hash Text

POST/api/v1/tools/hash-text1 credit per callhashmd5sha256checksumdigest

Returns the hexadecimal digest of the supplied text. MD5 and SHA-1 are offered for checksum and legacy interoperability work only - neither is safe for passwords or signatures, and this tool will not pretend otherwise.

receipt_long
Why 1 credit?

Pure CPU, measured in microseconds, with no outbound call. Priced at the platform floor.

Any HTTP client works. Replace the key with one from your dashboard.

bash
curl -X POST https://toolkitbackend-j69m.onrender.com/api/v1/tools/hash-text \
  -H "Authorization: Bearer tb_live_<your_api_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "text": "hello world",
  "algorithm": "sha256"
}'

Input

FieldTypeRequiredDefaultDescription
textstringrequired- The string to hash.
algorithmstringoptionalsha256 Digest algorithm. Defaults to sha256. One of: md5, sha1, sha256, sha512

Output

FieldTypeDescription
algorithmstringAlgorithm that was used.
hashstringLowercase hexadecimal digest.

Try it

Sends a real POST /api/v1/tools/hash-text from your browser and charges 1 credit to your account.

Sign in to run this endpoint. New accounts start with free credits.