timestamp_converter
verifiedv0.1Converts a Unix epoch or date string to ISO 8601, UTC, RFC 2822 and a named IANA timezone in the browser. Pass raw (1–200 chars) and optional zone (IANA, default UTC, max 100 chars). Never pass zone auto — that is UI-only and host-dependent. Variant URLs are not a second machine Tool — pass zone explicitly. Do not use this to compute business days (that is business_days) or calendar duration (that is date_duration).
Updated 9/3/2026 · Created 9/3/2026
Input Schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"raw"
],
"properties": {
"raw": {
"type": "string",
"maxLength": 200,
"minLength": 1
},
"zone": {
"type": "string",
"default": "UTC",
"maxLength": 100,
"minLength": 1
}
},
"additionalProperties": false
}Full Contract
{
"name": "timestamp_converter",
"description": "Converts a Unix epoch or date string to ISO 8601, UTC, RFC 2822 and a named IANA timezone in the browser. Pass raw (1–200 chars) and optional zone (IANA, default UTC, max 100 chars). Never pass zone auto — that is UI-only and host-dependent. Variant URLs are not a second machine Tool — pass zone explicitly. Do not use this to compute business days (that is business_days) or calendar duration (that is date_duration).",
"inputSchema": {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"raw"
],
"properties": {
"raw": {
"type": "string",
"maxLength": 200,
"minLength": 1
},
"zone": {
"type": "string",
"default": "UTC",
"maxLength": 100,
"minLength": 1
}
},
"additionalProperties": false
}
}GET /api/tool/simpletoolstack.com/timestamp_converter