/v1/hash
Hash with every algorithm
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/fasthash-api/v1/hash" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fasthash-api/v1/hash", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fasthash-api/v1/hash");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/fasthash-api/v1/hash",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"hashes": {
"djb2": {
"hex": "fde460be",
"uint": 4259602622
},
"sdbm": {
"hex": "a6437b0d",
"uint": 2789440269
},
"fnv1_32": {
"hex": "31f0b262",
"uint": 837857890
},
"fnv1_64": {
"hex": "340d8765a4dda9c2",
"uint": "3750802935296928194"
},
"fnv1a_32": {
"hex": "bf9cf968",
"uint": 3214735720
},
"fnv1a_64": {
"hex": "85944171f73967e8",
"uint": "9625390261332436968"
},
"crc16_arc": {
"hex": "b0c8",
"uint": 45256
},
"fletcher16": {
"hex": "ad7b",
"uint": 44411
},
"fletcher32": {
"hex": "85734437",
"uint": 2238923831
},
"murmur3_32": {
"hex": "a4c4d4bd",
"seed": 0,
"uint": 2764362941
},
"crc16_ccitt": {
"hex": "be35",
"uint": 48693
},
"jenkins_oat": {
"hex": "f952fde7",
"uint": 4182965735
}
},
"input_bytes": 6,
"seed_for_murmur3": 0
},
"meta": {
"timestamp": "2026-06-03T17:42:14.719Z",
"request_id": "59d63834-e84c-4779-9fd9-201fb8c6d086"
},
"status": "ok",
"message": "Hash (all algorithms)",
"success": true
}