Working Timer API is now available

feature api

Working Timer API is now available

We are happy to announce that the Working Timer API is now available for developers, teams, and automation tools.

The API allows you to connect Working Timer with your own internal systems, reporting tools, Zapier workflows, AI agents, or custom applications. Whether you want to import work records, generate reports, manage projects, or build your own integration, the new API gives you direct access to Working Timer data through a modern REST interface.

What can you do with the Working Timer API?

With the API, you can work with core Working Timer resources such as:

  • Work records

  • Projects

  • Activities

  • Profiles

  • Notes

  • Work requests

  • Work reports

  • Punch clock actions

This makes it easier to automate repetitive tasks, synchronize data between systems, and build custom workflows around time tracking.

Authentication

The API supports two authentication methods:

API key

The simplest option is to generate an API key in the dashboard and send it with every request using the X-Api-Key header.

curl https://api.specterint.com/api/v1/profile \
  -H "X-Api-Key: wt_ak_your_api_key_here"

This method is recommended for scripts, Zapier integrations, AI tools, and server-side automation.

OAuth 2.0

For more advanced integrations, you can also use OAuth 2.0 with a bearer token.

curl https://api.specterint.com/api/v1/profile \
  -H "Authorization: Bearer your_access_token_here"

OAuth is suitable for applications where users connect their own Working Timer account.

Quick start

To start using the API:

  1. Go to the Working Timer API portal.

  2. Sign in with your Working Timer account.

  3. Start the free trial.

  4. Generate your API key in the dashboard.

  5. Open the API documentation and try your first request.

Example: get work records for a selected date range.

curl https://api.specterint.com/api/v1/workrecord/by-date-range \
  -H "X-Api-Key: wt_ak_your_api_key_here" \
  -G \
  -d "fromDate=2026-03-01" \
  -d "toDate=2026-03-15" \
  -d "pageSize=50"

API documentation

Full API documentation, endpoint descriptions, and request examples are available directly in the API portal:

https://api.workingtimer.com/

Start building

The Working Timer API is designed for developers, automation workflows, reporting systems, and teams that need more control over their time tracking data.

You can start with a free trial and test the API before moving to production.

Visit the API portal and create your first integration today.