RescueTime

A personal analytics service that shows you how you spend your time and provides tools to help you be more productive.

Go to site
Explore
/
Apps
/
RescueTime

RescueTime API Integrations

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

The RescueTime API can help you obtain actionable insights from your digital usage data. With it, you can develop projects that measure and compare daily activity, measure time spent on specific tasks, and identify and track productivity trends. With this powerful API, you have the ability to optimize your productivity and understand how to best manage your digital life.

Here are some ways you can use the RescueTime API:

  • Monitor how much time you spend on specific tasks, websites and apps.
  • Analyze daily productivity and behavior over time.
  • Set up personal or team productivity goals.
  • Integrate with existing third-party systems to measure productivity.
  • Create customized reports and visualizations.
  • Run automations and get notifications based on specific digital activity.
  • Receive detailed time breakdowns for any timeframe.
  • Measure team productivity across multiple devices.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    rescuetime: {
      type: "app",
      app: "rescuetime",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.rescuetime.com/api/oauth/data`,
      params: {
        access_token: `${this.rescuetime.$auth.oauth_access_token}`,
        perspective: `interval`,
        restrict_kind: `productivity`,
        interval: `hour`,
        restrict_begin: `2018-01-01`,
        restrict_end: `2018-01-31`,
        format: `json`,
      },
    })
  },
})

Choose an API to Connect with RescueTime API

1
-
12
of
1000+
apps by most popular

Send Message (Advanced) with Discord Webhook API on New Daily Summary Report Created from RescueTime API
RescueTime + Discord Webhook
 
Try it
Get Film with SWAPI - Star Wars API on New Daily Summary Report Created from RescueTime API
RescueTime + SWAPI - Star Wars
 
Try it
Delete Record with Airtable API on New Daily Summary Report Created from RescueTime API
RescueTime + Airtable
 
Try it
Send any HTTP Request with HTTP / Webhook API on New Daily Summary Report Created from RescueTime API
RescueTime + HTTP / Webhook
 
Try it
Create Image with OpenAI API on New Daily Summary Report Created from RescueTime API
RescueTime + OpenAI (ChatGPT)
 
Try it
New Daily Summary Report Created from the RescueTime API

Emit new event each time a new daily summary report is available. See the docs here

 
Try it

Authentication

RescueTime uses OAuth authentication. When you connect your RescueTime account, Pipedream will open a popup window where you can sign into RescueTime and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any RescueTime API.

Pipedream requests the following authorization scopes when you connect your account:

time_datacategory_dataproductivity_dataalert_datahighlight_datafocustime_data
OAuth Request Configurations:
  1. authorization
    GEThttps://www.rescuetime.com/oauth/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://www.rescuetime.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}