/v1/meta
Spec
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fasthash-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fasthash-api/v1/meta");
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/meta",
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": {
"name": "Fast Hash API",
"notes": "Non-cryptographic — do not use for passwords, signatures or integrity against tampering. MurmurHash3 is x86_32. Nothing is stored.",
"version": "v1",
"endpoints": [
{
"path": "/v1/hash",
"params": {
"hex": "or raw bytes as hex",
"seed": "seed for murmur3 (default 0)",
"text": "text to hash (UTF-8)"
},
"returns": "every algorithm's digest"
},
{
"path": "/v1/algorithm",
"params": {
"seed": "for murmur3",
"text": "or hex",
"algorithm": "one of the listed names"
},
"returns": "that one algorithm's digest"
},
{
"path": "/v1/meta",
"params": [],
"returns": "this document"
}
],
"algorithms": [
"fnv1_32",
"fnv1a_32",
"fnv1_64",
"fnv1a_64",
"djb2",
"sdbm",
"jenkins_oat",
"crc16_ccitt",
"crc16_arc",
"fletcher16",
"fletcher32",
"murmur3_32"
],
"description": "Non-cryptographic hash functions — the fast hashes used in hash tables, bloom filters, sharding, deduplication and cache keys. Give it text (UTF-8) or raw bytes as hex and it returns the digest under every algorithm at once, or under one named algorithm: FNV-1 and FNV-1a (32- and 64-bit), djb2, sdbm, Jenkins one-at-a-time, CRC-16 (CCITT-FALSE and ARC/IBM), Fletcher-16 and Fletcher-32, and MurmurHash3 (x86 32-bit, with an optional seed). Each digest is returned in hex and as an unsigned integer. Everything is computed locally and deterministically, so the same input always maps to the same hash — exactly what you need for stable bucketing and lookups. These are NOT for security: they are fast and well-distributed, not collision-resistant. Ideal for hash-table and bloom-filter implementations, consistent sharding, cache and dedup keys, A/B bucketing, and teaching how hashing works. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 endpoints. For cryptographic hashes (SHA, MD5, HMAC) use a hash API, and for CRC-32/Adler-32 integrity checksums use a checksum API."
},
"meta": {
"timestamp": "2026-06-03T17:42:14.824Z",
"request_id": "10e7e2a8-41ae-4d93-b44c-71522248f481"
},
"status": "ok",
"message": "Meta",
"success": true
}