Skip to content
BEAD

Timestamp Converter

Convert between Unix timestamps, ISO dates, and local time.

Unix (seconds)
1781114924
Unix (ms)
1781114924700
ISO 8601 (UTC)
2026-06-10T18:08:44.700Z
UTC string
Wed, 10 Jun 2026 18:08:44 GMT
Local string
Wed 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
curl https://api.b-e-a-d.com/tools/timestamp-converter/run \
  -H "Content-Type: application/json" \
  -d '{
  "input": "your input here"
}'
JavaScript (fetch)
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);
MCP (Claude Desktop / Claude Code)
# 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_converter

Full 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