search
Utility :: Hash
HASH GENERATOR
Generate cryptographic hashes from any string. Supports MD5, SHA-1, SHA-256, SHA-512, and more via a simple HTTP API.
terminal Basic Usage
Hash with default algorithm (SHA-256)
GET https://placehold.cloud/hash?data=hello
Specify algorithm
GET https://placehold.cloud/hash?data=hello&algo=sha256
Return all algorithms at once
GET https://placehold.cloud/hash?data=hello&all=true
Parameters
data
The string to hash (required)
algo
Algorithm to use (default: sha256). Options: md5, sha1, sha224, sha256, sha384, sha512, crc32, crc32b
all
Set to true to return hashes for all available algorithms at once
Available Algorithms
md5
sha1
sha224
sha256
sha384
sha512
crc32
crc32b
Example Response
{
"data": "hello",
"algorithm": "sha256",
"hash": "2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824",
"length": 64
}
Try It
Rate Limiting
120 requests per minute