Hash digest
API · /hash-api
Hash API
Compute cryptographic hashes (MD5, SHA-1, SHA-256/384/512, SHA-3, RIPEMD-160) in hex or base64, generate HMAC signatures for webhook and message authentication, and mint v4 UUIDs. All server-side and deterministic. Handy for integrity checks, signing, cache keys, deduplication and id generation.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 72 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 4,792
- attiva
- Chiamate totali
- 57
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 8,000 chiamate/mese
- 3 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 10k calls/month
- 10 req/sec
- Hash + HMAC + UUID
- No credit card
Basic
€4.00 /mese
- 150,000 chiamate/mese
- 15 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 100k calls/month
- 20 req/sec
- Email support
Pro
€14.00 /mese
- 750,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 500k calls/month
- 40 req/sec
- Priority support
Mega
€39.00 /mese
- 4,000,000 chiamate/mese
- 200 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 2M calls/month
- 60 req/sec
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Fast Hash API
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 deliberately NOT for security: they are fast and well-distributed, not collision-resistant. Ideal for hash-table and bloom-filter implementations, consistent sharding and partitioning, 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.
api.oanor.com/fasthash-api
Bcrypt API
Hash and verify passwords with bcrypt, server-side. Generate a salted bcrypt hash at a cost factor you choose (4–14), check a plaintext password against an existing hash, or inspect a hash to read its bcrypt version, cost factor and salt. Fully compatible with bcrypt hashes from PHP ($2y$), Node, Python and others, so you can verify and migrate existing credentials. Pure server-side computation with no third-party upstream, so it is always available — and it offloads the deliberately CPU-intensive hashing work from your own servers. Ideal for adding password authentication, credential migration, auth tooling, testing and no-code backends.
api.oanor.com/bcrypt-api
UUID API
Un kit de herramientas rápido y completamente local para la generación de identificadores: cree UUID v4 (aleatorio), v7 (ordenado por tiempo y lexicográficamente ordenable), v3 y v5 (basados en nombre, deterministas mediante MD5 y SHA-1 sobre un espacio de nombres más un nombre) y el UUID nulo; genere ULID (ordenables, base32 de Crockford); genere nanoids (seguros para URL, con alfabeto y tamaño personalizados); y valide cualquier UUID, informando su versión y variante. Cada endpoint acepta entrada a través de la cadena de consulta o el cuerpo de la solicitud. Construido sobre Node crypto, sin terceros upstream, por lo que las respuestas son instantáneas y siempre están disponibles. Ideal para bases de datos y claves primarias, sistemas distribuidos, claves de idempotencia y correlación, y herramientas generales para desarrolladores.
api.oanor.com/uuid-api
WEMIX API
Live-EVM-On-Chain-Daten für WEMIX (Chain-ID 1111) – die spielefokussierte öffentliche Layer-1 von Wemade, deren nativer Token WEMIX ist – direkt von öffentlichen EVM-JSON-RPC-Knoten mit Multi-Node-Failover bereitgestellt. Der Status-Endpunkt gibt die Chain- und Netzwerk-ID, die neueste Blockhöhe und die Knoten-Client-Version zurück. Der Block-Endpunkt gibt einen Block nach Nummer (oder den neuesten) mit seinem Hash, Parent-Hash, Zeitstempel, Transaktionsanzahl, verbrauchtem Gas und Gaslimit, Miner und Größe zurück. Der Gas-Endpunkt gibt den aktuellen Gaspreis sowohl in Wei als auch in Gwei zurück. Der Balance-Endpunkt gibt das WEMIX-Guthaben und die Anzahl ausgehender Transaktionen für jede Adresse zurück, umgerechnet von Basis-Wei (18 Dezimalstellen) in ganze WEMIX mit exakter Big-Integer-Skalierung. Jeder Wert wird live über JSON-RPC von der Chain gelesen – nichts gebündelt oder modelliert – hinter einem kurzen serverseitigen Cache mit Keep-Warm, sodass der Feed schnell und aktuell bleibt. Ideal für Explorer, Wallet- und Dashboard-Tools, Gas-Tracker, Adress-Monitore und Spielwirtschaftsanalysen im gesamten WEMIX-Ökosystem. Live keyless Upstream. 5 Endpunkte.
api.oanor.com/wemix-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Hash API?
Qual è il limite di velocità di Hash API?
Quanto costa Hash API?
Posso cancellare l'abbonamento in qualsiasi momento?
Hash API è conforme al GDPR?
Scegli un endpoint dall'elenco a sinistra per visualizzarne i dettagli e provarlo.
Frammenti di codice
Iscriviti per ottenere una chiave API, quindi chiama qualsiasi percorso sotto il tuo slug.
curl https://api.oanor.com/hash-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/hash-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/hash-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/hash-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Valutazioni
Accedi per votare.
Nessuna recensione ancora.
Discussione
Fai domande, condividi consigli, ricevi risposte dal provider e dagli altri sviluppatori. Pubblico — chiunque può leggere.
Accedi per scrivere o rispondere.
AccediNuova discussione
·
-
Risposta del provider
🔒 Discussione bloccata — non si può più rispondere.
-
·
- Nessuna discussione — inizia tu.
Supporto
Supporto privato 1:1 con il provider — fatturazione, integrazione, account. Solo tu e il team del provider vedete questi thread.
Accedi per aprire un ticket di supporto.
AccediApri nuovo ticket
Descrivi cosa ti serve. Il team del provider riceve un'email e risponde sulla pagina del ticket.
-
·
Urgente - Nessun ticket per questa API.