Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the Raven Tools API

Setup the Schedule API trigger to run a workflow which integrates with the Raven Tools API. Pipedream's integration platform allows you to integrate Schedule and Raven Tools remarkably fast. Free for developers.

Add Keyword with Raven Tools API on Custom Interval from Schedule API
Schedule + Raven Tools
 
Try it
Add Keyword with Raven Tools API on Daily schedule from Schedule API
Schedule + Raven Tools
 
Try it
Add Keyword with Raven Tools API on Monthly Schedule from Schedule API
Schedule + Raven Tools
 
Try it
Add Keyword with Raven Tools API on Weekly schedule from Schedule API
Schedule + Raven Tools
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
New Domain Added from the Raven Tools API

Emit new event when a domain is added See docs here

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
New Keyword Added from the Raven Tools API

Emit new event for each keyword added to a domain See docs here

 
Try it
Add Keyword with the Raven Tools API

Add a keyword to a domain See docs here

 
Try it

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.

Overview of Raven Tools

Raven Tools is a comprehensive suite of SEO tools that helps marketers to conduct audits, track search engine rankings, and analyze competitors' strategies. With the Raven Tools API, one can programmatically access this wealth of SEO data and generate reports, manage link building campaigns, and monitor keyword rankings. Leveraging the Pipedream platform, you can create automated workflows that react to various triggers and connect Raven Tools with other services to streamline SEO processes, enhance data analysis, and improve decision-making.

Connect Raven Tools

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    raven_tools: {
      type: "app",
      app: "raven_tools",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.raventools.com/api`,
      params: {
        key: `${this.raven_tools.$auth.api_key}`,
        method: `profile_info`,
        format: `json`,
      },
    })
  },
})