JSON, Base64, JWT, hashing, diffs, regex, cron, and more — use them free today. Subscribe to unlock the REST API for scripting and CI/CD.
All 10 utilities run entirely in your browser. Nothing leaves your machine. No account needed.
Call any tool programmatically. Automate pipelines, scripts, and CI/CD workflows with a simple API key.
POST /api/v1/*X-Api-Key headerPretty-print, validate, and minify JSON
Convert text to and from Base64
SHA-256, SHA-512, MD5 hashing
Decode and inspect JWT tokens
Generate random v4 UUIDs
Unix timestamps to ISO and back
Test patterns, highlight matches
Compare two blocks of text
Encode and decode URL components
Show next run times for a cron expression
Render Markdown to HTML live
Beautify and format SQL queries
Bidirectional YAML/JSON conversion
Convert HEX, RGB, HSL colors
Generate placeholder text
All tools, forever free in your browser. No account required.
Full REST API access. Automate your workflows. API key delivered instantly.
X-Api-Key authAlready subscribed? Manage billing:
X-Api-Key: atpro_... — that's all you needBrowser tools are always free. For programmatic access, use /api/v1/* with your X-Api-Key header. Requires a Pro subscription.
curl https://apitoolkit.pro/api/verify-key \ -H "X-Api-Key: atpro_..."
curl -X POST https://apitoolkit.pro/api/v1/format-json \
-H "X-Api-Key: atpro_..." \
-H "Content-Type: application/json" \
-d '{"key":"value","nested":{"a":1}}'
# Base64
curl -X POST https://apitoolkit.pro/api/v1/base64 \
-H "X-Api-Key: atpro_..." \
-d '{"action":"encode","input":"hello"}'
# Hash
curl -X POST https://apitoolkit.pro/api/v1/hash \
-H "X-Api-Key: atpro_..." \
-d '{"input":"hello","algorithm":"sha256"}'
# JWT decode
curl -X POST https://apitoolkit.pro/api/v1/jwt-decode \
-H "X-Api-Key: atpro_..." \
-d '{"token":"eyJ..."}'
# UUID
curl -X POST https://apitoolkit.pro/api/v1/uuid \
-H "X-Api-Key: atpro_..."
# Timestamp
curl -X POST https://apitoolkit.pro/api/v1/timestamp \
-H "X-Api-Key: atpro_..." \
-d '{"action":"to_iso","input":"1712345678"}'
# Regex
curl -X POST https://apitoolkit.pro/api/v1/regex \
-H "X-Api-Key: atpro_..." \
-d '{"pattern":"\\w+","flags":"g","input":"hello world"}'
# Diff
curl -X POST https://apitoolkit.pro/api/v1/diff \
-H "X-Api-Key: atpro_..." \
-d '{"a":"line1\nline2","b":"line1\nline3"}'
# URL encode
curl -X POST https://apitoolkit.pro/api/v1/url-encode \
-H "X-Api-Key: atpro_..." \
-d '{"action":"encode","input":"hello world"}'
# Cron parser
curl -X POST https://apitoolkit.pro/api/v1/cron \
-H "X-Api-Key: atpro_..." \
-d '{"expression":"*/5 * * * *","count":5}'
# Markdown to HTML
curl -X POST https://apitoolkit.pro/api/v1/markdown \
-H "X-Api-Key: atpro_..." \
-d '{"input":"# Hello\n\nThis is **bold**."}'
# SQL formatter
curl -X POST https://apitoolkit.pro/api/v1/sql-formatter \
-H "X-Api-Key: atpro_..." \
-d '{"input":"SELECT id,name FROM users WHERE active=1","action":"format"}'
# YAML to JSON
curl -X POST https://apitoolkit.pro/api/v1/yaml-json \
-H "X-Api-Key: atpro_..." \
-d '{"input":"name: John\nage: 30","action":"yaml_to_json"}'
# Color converter
curl -X POST https://apitoolkit.pro/api/v1/color \
-H "X-Api-Key: atpro_..." \
-d '{"input":"#6366f1","from":"hex"}'
# Lorem ipsum generator
curl -X POST https://apitoolkit.pro/api/v1/lorem-ipsum \
-H "X-Api-Key: atpro_..." \
-d '{"paragraphs":3}'
Part of the DevKit Pro platform — 6 specialized tools built for developers