Hash Type Identifier API - Detect MD5, SHA, bcrypt & 30+ avatar

Hash Type Identifier API - Detect MD5, SHA, bcrypt & 30+

Pricing

$10.00 / 1,000 hash identifieds

Go to Apify Store
Hash Type Identifier API - Detect MD5, SHA, bcrypt & 30+

Hash Type Identifier API - Detect MD5, SHA, bcrypt & 30+

Hash type identifier API. Input: hashes (array of strings). Output: JSON per hash with candidate types (MD5, SHA-1/256/512, bcrypt, NTLM, CRC32, 30+ more) ranked by length and format match. Pay-per-result: a cent per hash identified, no subscription.

Pricing

$10.00 / 1,000 hash identifieds

Rating

0.0

(0)

Developer

Anthony Snider

Anthony Snider

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Hash Type Identifier

Paste a hash, find out what it is. Identifies MD5, SHA-1/224/256/384/512, bcrypt, Argon2, NTLM, JWT, UUID, CRC-32, MySQL, Unix crypt and 30+ more by format and length — ranked by likelihood.

Live on the Apify Store — run it instantly or call it as an agent tool via Apify MCP.

What you get

  • Single or bulk — identify one hash or hundreds in one run.
  • Ranked candidates — every plausible hash type with a confidence score, best guess first.
  • Format-aware — recognizes modular-crypt ($2b$…, $argon2id$…, $6$…), JWT, UUID, MySQL and LDAP prefixes, not just raw length.
  • Built for security analysis & CTFs — know which hashcat/john mode to reach for.

Input

{
"hash": "5f4dcc3b5aa765d61d8327deb882cf99",
"hashes": [
"$2b$12$R9h/cIPz0gi.URNNX3kh2OPST9/PgBkqquzi.Ss7KIUgO2t0jWMUW",
"eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxMjM0In0.dummysig"
],
"maxItems": 50
}

Output

One dataset item per hash:

{
"hash": "5f4dcc3b5aa765d61d8327deb882cf99",
"length": 32,
"candidates": [
{ "name": "MD5", "confidence": 60 },
{ "name": "NTLM", "confidence": 55 },
{ "name": "MD4", "confidence": 30 },
{ "name": "LM", "confidence": 25 }
]
}