← Developer Utilities

Supported Hash Algorithms

GET /hash/algorithms

List all supported cryptographic hash algorithms with their names. Currently supports MD5, SHA-1, SHA-256, SHA-384, and SHA-512.

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/hash/algorithms

Live Response

{
  "data": [
    "md5",
    "sha1",
    "sha256",
    "sha384",
    "sha512"
  ],
  "success": true
}