Hash Text
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
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
text | string | required | - | The string to hash. |
algorithm | string | optional | sha256 | Digest algorithm. Defaults to sha256. One of: md5, sha1, sha256, sha512 |
Output
| Field | Type | Description |
|---|---|---|
algorithm | string | Algorithm that was used. |
hash | string | Lowercase 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.