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.
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.
Usage notes
- Send your key with the
Authorization: Bearer YOUR_SECRET_KEYheader. - Keys are tied to your Google-authenticated
findtime.ioaccount. - Revoke a key immediately if it leaks or is no longer needed.
- Use one key per integration so usage and rotation stay manageable.
curl --request GET \ --url "https://time-api.findtime.io/time/current?query=Tokyo" \ --header "Authorization: Bearer YOUR_SECRET_KEY"
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("https://time-api.findtime.io/time/current?query=Tokyo", {
headers: {
Authorization: `Bearer ${apiKey}`,
},
});