RocketReach

Accurate, up-to-date contact info

Integrate the RocketReach API with the Filter API

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

lookup company with the RocketReach API

Lookup the profile of a company. See docs here

 
Try it
Continue execution if a condition Is met with the Filter API

Continue workflow execution only if a condition is met

 
Try it
lookup profile with the RocketReach API

Lookup the profile of a person. See docs here

 
Try it
End execution if a condition is met with the Filter API

End workflow execution if a condition is met

 
Try it

Overview of RocketReach

The RocketReach API lets you tap into a vast database of professionals to find email addresses, phone numbers, and social media profiles. With it, you can enrich lead data, automate the process of lead generation, and integrate this enriched data into your CRM or marketing automation tools. Pipedream's platform allows you to create serverless workflows using the RocketReach API to trigger events, handle data, and connect with countless other apps to streamline your processes.

Connect RocketReach

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    rocketreach: {
      type: "app",
      app: "rocketreach",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.rocketreach.co/v1/api/account?api_key=${this.rocketreach.$auth.api_key}`,
    })
  },
})

Overview of Filter

The Filter API in Pipedream allows for real-time data processing within workflows. It's designed to evaluate data against predefined conditions, enabling workflows to branch or perform specific actions based on those conditions. This API is instrumental in creating efficient, targeted automations that respond dynamically to diverse datasets. Using the Filter API, you can refine streams of data, ensuring that subsequent steps in your Pipedream workflow only execute when the data meets your specified criteria. This cuts down on unnecessary processing and facilitates the creation of more intelligent, context-aware systems.

Connect Filter

1
2
3
4
5
6
7
8
9
10
export default defineComponent({
  async run({ steps, $ }) {
    let condition = false
    if (condition == false) {
      $.flow.exit("Ending workflow early because the condition is false")
    } else {
        $.export("$summary", "Continuing workflow, since condition for ending was not met.")
    }
  },
})