arrow_back All endpoints

Argon2 Hash

POST/api/v1/tools/argon2-hash3 credits per callargon2passwordhashsecurity

Produces an Argon2id hash. Argon2 is memory-hard as well as slow, which is what makes it resistant to GPU and ASIC cracking in a way BCrypt is not. Prefer this over BCrypt for new systems.

receipt_long
Why 3 credits?

Argon2id is memory-hard: each call allocates and works over a sizeable block of RAM, so it consumes both CPU and memory that cannot be shared with other requests. It is the most expensive pure-CPU tool here.

Any HTTP client works. Replace the key with one from your dashboard.

bash
curl -X POST https://toolkitbackend-j69m.onrender.com/api/v1/tools/argon2-hash \
  -H "Authorization: Bearer tb_live_<your_api_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "password": "correct horse battery staple"
}'

Input

FieldTypeRequiredDefaultDescription
passwordstringrequired- Plaintext password to hash. Sent over TLS and never stored.

Output

FieldTypeDescription
hashstringEncoded Argon2id hash including its parameters and salt.

Try it

Sends a real POST /api/v1/tools/argon2-hash from your browser and charges 3 credits to your account.

Sign in to run this endpoint. New accounts start with free credits.