Documentation

Utility / v1

Hash

Accepts a small JSON body and returns its SHA-256 hexadecimal digest.

Live
POST/api/v1/hash
Live requestRuns from your browser
Use the POST example below.

Parameters

textstring · body · required
UTF-8 text, maximum 10,000 characters.

Example request

curl -X POST 'https://informantion.com/api/v1/hash' \
  -H 'content-type: application/json' \
  -d '{"text":"information"}'

Example response

{
  "success": true,
  "data": {
    "algorithm": "SHA-256",
    "digest": "…"
  }
}

Response schema

algorithmstring
Digest algorithm.
digesthex string
Lowercase SHA-256 digest.

Possible errors

400 · INVALID_BODYThe JSON body is missing or invalid.
413 · PAYLOAD_TOO_LARGEThe request exceeds the input limit.

Rate limit

60 requests per minute under the current anonymous fair-use policy. Check the response headers for the active window.