Clockify

100% Free Time Tracking Software

Go to site
Explore
/
Apps
/
Clockify

Clockify API Integrations

Build and run workflows using the Clockify API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the Clockify API, you can build applications that:

  • Display data from your Clockify account
  • Update data in your Clockify account
  • Perform actions in your Clockify account (such as starting and stopping timers)

Here are some examples of what you can build with the Clockify API:

  • A dashboard that displays yourClockify data
  • An application that starts and stops timers in your Clockify account
  • A tool that helps you track your time spent on different projects
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    clockify: {
      type: "app",
      app: "clockify",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.clockify.me/api/v1/user`,
      headers: {
        "X-Api-Key": `${this.clockify.$auth.api_key}`,
        "content-type": `application/json`,
      },
    })
  },
})

Authentication

Clockify uses API keys for authentication. When you connect your Clockify account, Pipedream securely stores the keys so you can easily authenticate to Clockify APIs in both code and no-code steps.

All your requests should include "X-Api-Key" in request header, containing your API key.