๐Ÿ”

Hash Generation API

Generate cryptographic hashes of any text. Supports MD5, SHA-1, SHA-256, SHA-384, and SHA-512. Returns both hex and base64 encodings. Zero latency โ€” uses Node.js native crypto, no external API calls.

API Docs $0.001 / request

About this tool

Generate cryptographic hashes for any text string using industry-standard algorithms. Perfect for content fingerprinting, integrity verification, password hashing workflows, and generating unique identifiers. Runs entirely on Node.js native crypto module โ€” no external API, instant response.

Quick Start

curl -X POST https://api.iteratools.com/hash \ -H "Authorization: Bearer YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"text": "hello world", "algorithm": "sha256"}'

Response

{ "hash": "b94d27b9934d3e08a52e52d7da7dabfac484efe04294e576b94b5d54acfe", "algorithm": "sha256", "input_length": 11, "hex": "b94d27b9934d3e08a52e52d7da7dabfac484efe04294e576b94b5d54acfe", "base64": "uU0nuRpPqzSe5S1nus/axCSOT+BClOV2uUtVVDyv/g==" }

Supported Algorithms

  • sha256 โ€” SHA-256 (default, recommended)
  • sha512 โ€” SHA-512 (maximum security)
  • sha384 โ€” SHA-384
  • sha1 โ€” SHA-1 (legacy compatibility)
  • md5 โ€” MD5 (non-cryptographic, fast checksums)

Request Body

{ "text": "string (required) โ€” text to hash", "algorithm": "string (optional) โ€” md5 | sha1 | sha256 | sha384 | sha512 (default: sha256)" }

Pricing

$0.001 per request via x402 micropayment on Base (USDC). Zero external API cost โ€” runs entirely on server using Node.js native crypto.

Full Documentation Browse All Tools