Plan Meetings Across Time Zones with findtime.io

findtime.io helps distributed teams compare time zones, spot overlapping work hours, and choose fair meeting times. Select two or more cities to see local times, UTC offsets, and Daylight Saving status, then pick a window that avoids after-hours.

We use the IANA time zone database and update automatically. Toggle 12/24-hour formats, copy a link to share, and explore city pages for detailed time zone information.

How to use findtime.io

  1. Select the cities you want to compare
  2. Review current times and overlapping hours
  3. Choose a fair meeting slot and share the link
findtime.io
Popular Cities
Popular Pairs
API

findtime.io API Keys

Sign in with Google, create a developer key, and use it to authenticate requests against the findtime.io Time Intelligence API.

Keys are tied to your findtime.io account. We only show the full secret once at creation time, so copy it somewhere safe before you close the dialog.

Developer Console

Manage API keys

Sign in with Google to create and manage API keys.

Google-authenticated account required

API keys are tied to a signed-in findtime.io account. Sign in with Google to create a key and manage future access in one place.

API

Usage notes

  • Send your key with the Authorization: Bearer YOUR_SECRET_KEY header.
  • Keys are tied to your Google-authenticated findtime.io account.
  • Revoke a key immediately if it leaks or is no longer needed.
  • Use one key per integration so usage and rotation stay manageable.
curl
curl --request GET \
  --url "https://time-api.findtime.io/time/current?query=Tokyo" \
  --header "Authorization: Bearer YOUR_SECRET_KEY"
python
import requests

response = requests.get(
    "https://time-api.findtime.io/time/current",
    params={"query": "Tokyo"},
    headers={"Authorization": "Bearer YOUR_SECRET_KEY"},
)

data = response.json()
fetch
fetch("https://time-api.findtime.io/time/current?query=Tokyo", {
  headers: {
    Authorization: `Bearer ${apiKey}`,
  },
});
v3.27-27-g2065f71a6-3307-2065f71