What problem does it solve?
It solves the problem of wiring Clockify’s REST API into your app so you can reliably fetch projects, users, and time entries while avoiding common pitfalls like timezone and membership issues.
Core Features & Use Cases
- Clockify authentication and base URLs: Use the X-Api-Key header and handle global vs regional API prefixes.
- Core endpoint patterns: Retrieve projects, workspace users, and time entries using the right routes and parameters.
- Reports API for time queries: Use the Reports API with timeZone: UTC to avoid the start/end timezone ambiguity in the time-entries endpoint.
- Practical correctness guidance: Handle pagination, rate limiting, hydrated project membership data, and UTC timestamp expectations.
Quick Start
Ask an AI coding agent to help you build a Clockify client that lists workspace projects and fetches time summaries for a UTC date range using the correct API base URL and headers.