Timestamp Converter
Convert between Unix timestamps, ISO dates, and local time.
178111492417811149247002026-06-10T18:08:44.700ZWed, 10 Jun 2026 18:08:44 GMTWed Jun 10 2026 18:08:44 GMT+0000 (Coordinated Universal Time)🔒 Runs entirely in your browser.
</>Use this tool programmaticallycurl · JavaScript · MCP
Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.
curl https://api.b-e-a-d.com/tools/timestamp-converter/run \
-H "Content-Type: application/json" \
-d '{
"input": "your input here"
}'const res = await fetch("https://api.b-e-a-d.com/tools/timestamp-converter/run", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"input": "your input here"
}),
});
const data = await res.json();
console.log(data.result);# In Claude Desktop / Claude Code, add to your MCP config:
{
"mcpServers": {
"bead": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
}
}
}
# Then ask Claude to call:
mcp__bead__bead_timestamp_converterFull reference: developer docs · OpenAPI spec
About this tool
Convert between Unix epoch seconds, milliseconds, and ISO 8601 dates. Detects format automatically.
Frequently asked
▸What's the difference between Unix and ISO 8601?
Unix timestamps are seconds (or milliseconds) since 1970-01-01 UTC — a single integer. ISO 8601 is a human-readable string like 2026-05-28T09:30:00Z. The converter accepts either as input and shows both as output.
▸How does it handle time zones?
Unix timestamps are always UTC by definition. The converter shows the corresponding ISO time in UTC (with Z) and in your browser's local time zone. If you need a specific other zone, paste the ISO into the World Clock tool.
▸Seconds or milliseconds?
The converter detects which based on magnitude (anything above ~10^12 is treated as milliseconds, which covers all dates beyond September 2001 in seconds). You can also pick explicitly via the dropdown.
You might also like
- Time Duration CalculatorFind the duration between two times or dates, or add a duration to a starting time.
- CSV ↔ JSON ConverterConvert CSV to JSON or JSON to CSV with quoted fields and configurable delimiters.
- cURL ConverterParse a curl command and emit fetch, Node https, Python requests, Ruby Net::HTTP, Go net/http, PowerShell, HTTPie, and wget equivalents.
- Data Size ConverterConvert between bytes, kilobytes, megabytes, gigabytes, bits, and their binary (KiB, MiB) cousins.