Public Free API

RiskAPI Utility Surface

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.

Browse the reference, copy an endpoint, and start with a direct request. Responses are JSON, the routes are rate limited, and the public free endpoints are intended to stay lightweight and predictable.

Free checks

These public endpoints are intended to be simple, predictable, and easy to verify from a browser, terminal, or application client.

Ping

Basic no-charge liveness check.

GET Free
https://alpha-swan.duckdns.org/v1/free/ping

Current UTC Time

Return current UTC time and a Unix epoch value.

GET Free
https://alpha-swan.duckdns.org/v1/free/time/utc

Slugify Text

Convert a phrase into a clean lowercase ASCII slug.

POST Free
https://alpha-swan.duckdns.org/v1/free/text/slugify

Word Count

Return word, character, and line counts for a text block.

POST Free
https://alpha-swan.duckdns.org/v1/free/text/word-count

Extract URLs

Pull HTTP and HTTPS links out of plain text.

POST Free
https://alpha-swan.duckdns.org/v1/free/text/extract-urls

Unix To UTC

Convert a Unix epoch into an RFC 3339 UTC timestamp.

POST Free
https://alpha-swan.duckdns.org/v1/free/time/unix-to-utc

UTC To Unix

Convert an RFC 3339 timestamp into a Unix epoch value.

POST Free
https://alpha-swan.duckdns.org/v1/free/time/utc-to-unix

SHA-256 Hash

Return the SHA-256 hex digest for a string.

POST Free
https://alpha-swan.duckdns.org/v1/free/hash/sha256

Quickstart

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.