The RocketReach API provides access to comprehensive yet reliable data about people and organizations. With this API, you can build applications that can retrieve contact information, corporate hierarchy, and professional profiles.
Here are some examples of what can be built using the RocketReach API:
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}`,
})
},
})
RocketReach uses API keys for authentication. When you connect your RocketReach account, Pipedream securely stores the keys so you can easily authenticate to RocketReach APIs in both code and no-code steps.
RocketReach's API key is accessible from the account page, API Usage & Settings option.