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
Checking your developer account...
API
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
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}`,
},
});