Hash Generator
Generate cryptographic hashes from any text
0 characters
API Documentation
cURL Example
curl -X POST https://toolteeno.com/api/hash-generator \
-H "Content-Type: application/json" \
-d '{
"text": "Hello, World!",
"algorithms": ["md5", "sha256", "sha512"]
}'JavaScript Example
fetch('https://toolteeno.com/api/hash-generator', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
text: 'Hello, World!',
algorithms: ['md5', 'sha256', 'sha512']
})
})
.then(res => res.json())
.then(data => console.log(data));Python Example
import requests
response = requests.post(
'https://toolteeno.com/api/hash-generator',
json={
'text': 'Hello, World!',
'algorithms': ['md5', 'sha256', 'sha512']
}
)
print(response.json())Response Example
{
"success": true,
"results": [
{
"algorithm": "MD5",
"hash": "65a8e27d8879283831b664bd8b7f0ad4",
"length": 32
},
{
"algorithm": "SHA256",
"hash": "dffd6021bb2bd5b0af676290809ec3a53191dd81c7f70a4b28688a362182986f",
"length": 64
}
],
"input": {
"text": "Hello, World!",
"textLength": 13
}
}