Dataczar
Browse helpers

utils service

Shared helper APIs consumed by multiple services. Browse the catalog below and pick the helpers that fit your workflow.

Grab your Dataczar API key

Every helper runs with the same simple API key. Sign in (or create a free Dataczar account) at Dataczar Connect to issue keys in seconds, then drop the key into any `ak=` parameter and start shipping.

Tip: reuse the same key across these helpers, or rotate keys per project from the Connect dashboard.

GETPOSTConvert UNIX epoch seconds to ISO 8601 in any timezone.

Handy for debugging timestamps—just pass the epoch and target timezone to see a friendly date/time.

View reference →

GETPOSTGenerate MD5/SHA hashes with an optional salt.

Great for quick checksums—supports md5, sha1, sha256, and sha512.

View reference →

GETPOSTNormalize arbitrary timestamps to ISO 8601.

Accepts any ISO-ish string, applies the timezone you specify, and returns a clean ISO 8601 string (optionally with milliseconds).

View reference →

GETPOSTDecode JWT header/payload without verifying signature.

Base64URL decodes the first two JWT segments so you can inspect claims during debugging.

View reference →

GETPOSTAdd or subtract seconds/minutes/hours/days/weeks from a timestamp.

Use this when prototyping cron windows or token expiration logic—supply the base timestamp, amount, and unit.

View reference →

GETPOSTConvert a timestamp between timezones.

If the timestamp lacks timezone info we assume the provided from_timezone (default UTC) before converting to the target zone.

View reference →