Skip to main content
POST
/
ip_to_hem
IP to HEM
curl --request POST \
  --url https://api.moltsets.com/api/v1/tools/ip_to_hem \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ip_address": "8.8.8.8",
  "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)",
  "include_sha256": true
}
'
{
  "results": [
    {
      "md5": "43132e2f7752aafbc18d0ff97bbXXXXX",
      "sha256": "9adcf8496de590e61c733352fdcafaXXXXX",
      "score": "0.928"
    }
  ],
  "status": "ok",
  "metadata": {
    "tokens_charged": 1,
    "tokens_remaining": 206
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.moltsets.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token. Keys follow the format ms_XXXXXXXXXXX.

Body

application/json
ip_address
string
required

IPv4 address to resolve.

Example:

"8.8.8.8"

user_agent
string

Browser user agent string. Significantly improves match accuracy.

include_sha256
boolean
default:false

When true, includes SHA-256 hashes alongside MD5 hashes in results.

Response

Success