Text

MD5 Hash (POST)

0calls
Free

A standard tool for calculating MD5 hash values of text, this version is recommended.

POST
uapis.cn
/api/v1/text/md5
Body
text
string
required

Text to calculate hash value for

Overview

Pass text via POST request body, returns its 32-character lowercase MD5 hash value. Compared to the GET version, this method is more suitable for handling longer or sensitive information text.

Request body

text
stringrequired

Text to calculate hash value for

Response

200 / OK

Successful response

JSON
{
  "md5": "5d41402abc4b2a76b9719d911017c592"
}

400 / Bad Request

Missing text parameter

JSON
{
  "code": "INVALID_ARGUMENT",
  "details": {},
  "message": "Missing 'text' parameter in form data."
}