Ping
Basic public liveness check.
Public Free API
A lightweight collection of deterministic JSON utilities for text, time, URL, JSON, encoding, and hashing tasks. The current public release is designed to stay fast, predictable, and easy to verify from scripts or browsers.
Core
Minimal public checks for a first request or a quick liveness probe.
Basic public liveness check.
Text
Small text utilities for counts, extraction, deduplication, and clean slug output.
Convert a phrase into a clean lowercase ASCII slug.
Return word, character, and line counts for a text block.
Pull HTTP and HTTPS links out of plain text.
Extract email-like addresses from plain text.
Remove duplicate lines while preserving the first occurrence.
Time
Current UTC time, direct conversions, and a small timestamp difference utility.
Return current UTC time and a Unix epoch value.
Convert a Unix epoch into an RFC 3339 UTC timestamp.
Convert an RFC 3339 timestamp into a Unix epoch value.
Calculate minute and second differences between two timestamps.
JSON & Data
Simple helpers for validating JSON, making it readable, or compacting it for transport.
Pretty-print valid JSON with configurable indentation.
Collapse valid JSON into a compact single-line form.
Check whether JSON is valid and report the top-level type or error location.
Encoding & Hashing
Deterministic helpers for SHA-256 and Base64 work.
Return the SHA-256 hex digest for a string.
Encode UTF-8 text as Base64 or URL-safe Base64.
Decode Base64 text back into UTF-8.
URL & Web
Inspect URL components or apply a basic normalization pass.
Split a URL into components and query parameters.
Lowercase scheme and host, remove default ports, and optionally drop fragments.
Start with a few direct calls. Everything below is public, free to test, and grouped to match the site categories above.
curl https://alpha-swan.duckdns.org/v1/free/ping
curl https://alpha-swan.duckdns.org/v1/free/time/utc
curl -X POST https://alpha-swan.duckdns.org/v1/free/text/extract-emails \
-H "Content-Type: application/json" \
-d '{"text":"Email ops@example.com and admin@example.org"}'curl -X POST https://alpha-swan.duckdns.org/v1/free/json/validate \
-H "Content-Type: application/json" \
-d '{"text":"{\"service\":\"utility-api\",\"free\":true}"}'curl -X POST https://alpha-swan.duckdns.org/v1/free/url/parse \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com/docs?q=one&q=two#frag"}'The full machine-readable contract is available in the OpenAPI reference linked above.