Date/Time
Duration Humanizer
Turn a number of seconds into a readable duration like 1d 2h 3m 4s.
Focused calculator
Calculate Duration Humanizer
1d 1h 1m 1s
When to use this tool
Use the Duration Humanizer for quick, focused data cleanup directly on the page before copying the output into code, documentation, spreadsheets or another tool.
- Timestamp, cron and duration cleanup for logs, scheduling, automation and developer notes.
- Turning machine-readable time values into human-readable text before sharing or debugging.
- Checking timezone and field assumptions before copying the result into production config.
Accuracy, privacy and assumptions
- Timestamps are interpreted with the assumptions shown on the page, usually UTC for machine-readable values.
- Cron descriptions are helpers; confirm production schedules in the scheduler that will actually run them.
Common mistakes to avoid
Most wrong answers from a Duration Humanizer come from unit direction, rounding too early, or copying a result without its original context.
- Do not ignore UTC versus local time when converting timestamps or reading logs.
- Do not deploy a cron expression until you confirm it in the scheduler that will actually run it.
- For durations, distinguish elapsed seconds from calendar dates and time zones.
Copy-ready result format
Duration Humanizer output: 1d 1h 1m 1s (90061 seconds).
- Keep the original input available until the destination accepts the transformed output.
- Copy validation errors along with the input when debugging a failed import.
- Use browser-only pages for sensitive copied text or account-like payloads.
Best workflow for Duration Humanizer
- Paste or type the input into the tool above.
- Choose the target mode or format when the tool offers one.
- Review validation errors and copy the output only after it matches the expected structure.
- For sensitive data, prefer browser-only tools and avoid API-enabled endpoints.
Next steps after this result
After the immediate calculation, choose the next tool based on what you plan to do with the value.
- Confirm UTC or local timezone expectations.
- Test cron output in the production scheduler.
- Record assumptions with log or automation notes.
Formula
How it works: The total seconds are divided down through days, hours, minutes and seconds, dropping any leading zero units.
Common examples
| Input | Result |
|---|---|
| 90061 | 1d 1h 1m 1s |
| 3600 | 1h |
| 0 | 0s |
JSON API example
Use the public JSON endpoint with these query parameters.
seconds90061
GET https://api.convematik.com/duration?seconds=90061
{
"result": "1d 1h 1m 1s"
}
Common questions
What does the Duration Humanizer do?
Turn a number of seconds into a readable duration like 1d 2h 3m 4s.
Does the Duration Humanizer send my data to a server?
The Duration Humanizer runs locally in your browser for instant results, and the same transform is also available as a public JSON API endpoint.
When should I use the Duration Humanizer instead of a spreadsheet or script?
Use the Duration Humanizer for quick validation, formatting, decoding or cleanup when you need a deterministic output before copying the result into code, docs, an API request or a spreadsheet.
Is the Duration Humanizer free to use?
Yes. The Duration Humanizer is free and does not require an account.