Time Tracking Integration
Monetro integrates with multiple time tracking providers to convert tracked hours into invoices.
Supported Providers
| Provider | Auth Method | Auto-Invoice |
|---|---|---|
| Trakro | API Key | Yes |
| Timely | OAuth2 | Yes (daily cron) |
| Toggl Track | API Key | Manual |
| Clockify | API Key | Manual |
| Mite | API Key | Manual |
Workflow
- Connect your time tracking provider in Settings
- Map clients/projects to Monetro customers
- Review billable hours
- Generate invoice with one click (or auto-invoice via cron)
Get Billable Entries
GET /api/time-tracking/entries?from=2026-03-01&to=2026-03-31
Create Invoice from Time Entries
POST /api/time-tracking/create-invoice
{
"customerId": "customer-uuid",
"from": "2026-03-01",
"to": "2026-03-31",
"hourlyRate": "95.00"
}
The system aggregates all billable hours and creates an invoice with itemized line entries per project/task.