Free Developer Toolkit

8 essential developer tools. No signup, no tracking, no limits. Free forever.

Why Forge DevTools vs CyberChef & it-tools? → · API docs · All APIs

JSON
Base64
URL Encode
Hash
UUID
Timestamp
Text Stats

JSON Tools

Format, validate, minify JSON instantly

Base64

Encode and decode Base64 strings

URL Encode

Encode and decode URL components

Hash Generator

MD5, SHA1, SHA256, SHA512

UUID Generator

v1 and v4, batch generate up to 100

Timestamp

Unix epoch and ISO 8601 conversion

Text Stats

Word count, reading time, more

API Access

Every tool available as a REST API

API Usage

# Format JSON
curl -X POST https://forge-node.tail2b516d.ts.net/json/format \
  -H "Content-Type: application/json" \
  -d '{"json_string": "{\"a\":1}", "indent": 2}'

# Generate hashes
curl "https://forge-node.tail2b516d.ts.net/hash?text=hello"

# Generate UUIDs
curl "https://forge-node.tail2b516d.ts.net/uuid?count=10"

# Current timestamp
curl "https://forge-node.tail2b516d.ts.net/timestamp"

# Base64 encode
curl -X POST https://forge-node.tail2b516d.ts.net/base64/encode \
  -H "Content-Type: application/json" \
  -d '{"text": "Hello World"}'

Frequently Asked Questions

Is this really free?
Yes. No premium tier, no signup, no watermarks. Free forever.
Is my data stored?
No. Nothing is logged or stored. Your data is processed in memory and discarded immediately.
Can I use the API in production?
Yes. All endpoints are available as REST APIs with no authentication required. Rate limited at 120 requests/minute per IP.
What hash algorithms are supported?
MD5, SHA1, SHA256, and SHA512. All generated in a single request.
What UUID versions are supported?
Version 1 (time-based) and Version 4 (random). Generate up to 100 at once.
Does the timestamp converter handle milliseconds?
Yes. If you pass an epoch value greater than 10 trillion, it's automatically treated as milliseconds.