API
Decrypt Hashes
Protocol: GET
URL: https://hashes.helixs.id/API/
Parameters
info
hashes
Example
curl https://hashes.helixs.id/API/?hashes=e10adc3949ba59abbe56e057f20f883e
Response
{
"status": true,
"msg": "Found",
"hash": "e807f1fcf82d132f9bb018ca6738a19f",
"type": "MD5",
"plaintext": "1234567890",
"credit": "Helixs Crew"
}
Code Example
<?php
$hash_value = "e807f1fcf82d132f9bb018ca6738a19f";
$url = "https://hashes.helixs.id/API/?hashes=" . $hash_value;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
if (curl_errno($ch)) {
$error_message = curl_error($ch);
echo "Error: " . $error_message;
} else {
$data = json_decode($response, true);
echo "Status: " . $data["status"] . "<br>";
echo "Message: " . $data["msg"] . "<br>";
echo "Hash: " . $data["hash"] . "<br>";
echo "Type: " . $data["type"] . "<br>";
echo "Plaintext: " . $data["plaintext"] . "<br>";
echo "Credit: " . $data["credit"] . "<br>";
}
curl_close($ch);
?>
import requests
hash_value = "e807f1fcf82d132f9bb018ca6738a19f"
url = "https://hashes.helixs.id/API/?hashes=" + hash_value
response = requests.get(url)
if response.status_code != 200:
error_message = response.text
print("Error:", error_message)
else:
data = response.json()
print("Status:", data['status'])
print("Message:", data['msg'])
print("Hash:", data['hash'])
print("Type:", data['type'])
print("Plaintext:", data['plaintext'])
print("Credit:", data['credit'])
var hash_value = "e807f1fcf82d132f9bb018ca6738a19f";
var url = "https://hashes.helixs.id/API/?hashes=" + hash_value;
fetch(url)
.then(response => {
if (!response.ok) {
throw new Error("Error: " + response.statusText);
}
return response.json();
})
.then(data => {
console.log("Status:", data.status);
console.log("Message:", data.msg);
console.log("Hash:", data.hash);
console.log("Type:", data.type);
console.log("Plaintext:", data.plaintext);
console.log("Credit:", data.credit);
})
.catch(error => {
console.error(error);
});
