ClockEye integrates with the tools you already use. Track time seamlessly without switching between apps.
Start timers, get notifications, and track time from Slack
Sync projects and track time against Jira tickets
Connect tasks and projects for seamless time tracking
Link commits and PRs to time entries automatically
Auto-log time from calendar events
Track time and collaborate in Teams
Track time on Trello cards and boards
Connect GitLab projects and track development time
Sync Outlook events with time entries
Export time entries for invoicing
Streamline billing with time data
Track time on Notion databases
Modern issue tracking with time data
Track design time automatically
Export and analyze time data
Connect to 5000+ apps with Zapier
Use our powerful API to build custom integrations for your specific needs. Full documentation, SDKs, and dedicated support available.
Full-featured REST API with comprehensive documentation
Real-time notifications for time entries, projects, and more
Secure authentication for third-party applications
import { ClockEye } from '@clockeye/sdk';
const client = new ClockEye({
apiKey: process.env.TIMEDECK_API_KEY
});
// Start a timer
const timer = await client.timers.start({
projectId: 'proj_123',
description: 'Working on feature'
});
// Get time entries
const entries = await client.entries.list({
from: '2025-01-01',
to: '2025-01-31',
userId: 'user_456'
});
// Webhook handler
app.post('/webhook', (req, res) => {
const event = req.body;
if (event.type === 'timer.stopped') {
console.log('Timer stopped:', event.data);
}
res.status(200).send('OK');
});Set up your first integration in minutes and start tracking time seamlessly.
No credit card required · 14-day free trial