Everhour

Everhour is one of the best time tracking tools for teams. See who’s tracking time, who’s overworked and who can handle more. Keep track of all your project budgets, schedule threshold alerts, use forward resource planning. Build any kind of reports and send professional-looking invoices.

Go to site
Explore
/
Apps
/
Everhour

Everhour API Integrations

Build and run workflows using the Everhour 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

Everhour provides an API that gives developers access to theEverhour data. This allows developers to build integrations withEverhour that can display data in new ways, or automate tasks such as tracking time or creating projects.

Some examples of what can be built using the Everhour API include:

  • A time tracking app that integrates with Everhour to display data in a new way, or automate tasks such as tracking time or creating projects.
  • A project management app that uses Everhour to track project progress and tasks.
  • An invoicing app that integrates with Everhour to create invoices based on time tracking data.
  • A reporting app that uses Everhour data to generate reports on project progress or team performance.
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: {
    everhour: {
      type: "app",
      app: "everhour",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.everhour.com/users/me`,
      headers: {
        "Content-Type": `application/json`,
        "X-Api-Key": `${this.everhour.$auth.api_token}`,
      },
    })
  },
})

Authentication

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

You can get the API Token from the Everhour web app by going to Account Settings > My Profile at the bottom of the page.