DevTools API

Free developer text utilities. JSON formatting, Base64, URL encoding, hashing, UUIDs, timestamps, text stats.

No signup. No API key. No limits.

Endpoints

POST/json/format

Format & pretty-print JSON. Body: {"json_string": "...", "indent": 2}

POST/json/validate

Validate JSON. Body: {"text": "..."}

POST/json/minify

Minify JSON. Body: {"text": "..."}

POST/base64/encode

Encode text to Base64. Body: {"text": "..."}

POST/base64/decode

Decode Base64 to text. Body: {"text": "..."}

POST/url/encode

URL-encode text. Body: {"text": "..."}

POST/url/decode

URL-decode text. Body: {"text": "..."}

GET/hash?text=hello

Generate MD5, SHA1, SHA256, SHA512 hashes.

POST/hash

Generate hashes. Body: {"text": "..."}

GET/uuid?count=5&version=4

Generate UUIDs. v1 or v4. Up to 100 at once.

GET/timestamp

Current time in Unix, ISO 8601, RFC 2822 formats.

GET/timestamp/convert?epoch=1700000000

Convert epoch to date, or ?ts=2024-01-15T12:00:00Z to epoch.

POST/text/stats

Word count, character count, reading time, etc. Body: {"text": "..."}

GET/health/devtools

Health check.

Back to all APIs