Ping
Basic no-charge liveness check.
Public Free API
A small collection of fast, deterministic API utilities for straightforward text, time, and hashing tasks. The current public surface focuses on simple free endpoints that are easy to test and integrate.
These public endpoints are intended to be simple, predictable, and easy to verify from a browser, terminal, or application client.
Basic no-charge liveness check.
Return current UTC time and a Unix epoch value.
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.
Convert a Unix epoch into an RFC 3339 UTC timestamp.
Convert an RFC 3339 timestamp into a Unix epoch value.
Return the SHA-256 hex digest for a string.
Start with a few direct calls. Everything below is public, free to test, and ready to use.
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/slugify \
-H "Content-Type: application/json" \
-d '{"text":"Hello, utility API world"}'curl -X POST https://alpha-swan.duckdns.org/v1/free/hash/sha256 \
-H "Content-Type: application/json" \
-d '{"text":"abc"}'The full machine-readable contract is available in the OpenAPI reference linked above.