API अवलोकन पर वापस

hash

POST1 क्रेडिट

Computes a cryptographic hash of a UTF-8 string. Useful for content fingerprinting, deduplication, and verifying integrity without sending the payload to a third-party service.

एंडपॉइंट

POST https://x114.org/api/v1/hash

अनुरोध बॉडी

POST बॉडी में JSON के रूप में भेजें।

NameTypeRequiredDescription
textstringrequiredThe input text to hash. Up to 1 MB.
algorithm"sha1" | "sha256" | "sha384" | "sha512"optionalHash algorithm. Defaults to "sha256".

प्रतिक्रिया बॉडी

सफलता पर JSON लौटाया (HTTP 200)।

NameTypeRequiredDescription
okbooleanrequiredTrue on success.
algorithmstringrequiredThe algorithm used (uppercased).
hashstring (hex)requiredHex-encoded digest.
lengthnumberrequiredLength of the hex digest in characters (algorithm-dependent).

उदाहरण

curl -X POST https://x114.org/api/v1/hash \
  -H "Authorization: Bearer sk_..." \
  -H "Content-Type: application/json" \
  -d '{"text":"hello world","algorithm":"SHA-256"}'
इसे ब्राउज़र में आज़माएं

मुफ़्त उपकरण आपको कोई कोड लिखे बिना वही परिणाम देता है।

उपकरण खोलें