Woodpecker is an intuitive cold email tool for lead gen, sales & recruitment professionals. The tool allows you to automatically connect with your prospective clients or business partners.
Emit new event when an email is opened see the docs here
Emit new event when an email is sent see the docs here
Emit new event when you get an autoreply and you set a date to resume follow-ups see the docs here
Emit new event when a prospect clicks on a link in your email see the docs here
Emit new event when an autoreply is detected or prospect's status is manually changed to 'Autoreplied' see the docs here
This action creates/updates a prospect. See the docs here
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See the documentation
This action creates/updates a prospect in a campaign. See the docs here
Summarizes text using the Chat API. See the documentation
This action searches a specific prospect. See the docs here
The Woodpecker.co API lets you automate your email outreach and follow-up processes. With it, you can manage contacts, campaigns, and emails programmatically, creating a seamless bridge between your email campaigns and your data. This API, integrated with Pipedream, unlocks powerful workflows that can save time, personalize communication at scale, and keep your data in sync across various platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
woodpecker_co: {
type: "app",
app: "woodpecker_co",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.woodpecker.co/rest/v1/campaign_list`,
auth: {
username: `${this.woodpecker_co.$auth.api_key}`,
password: ``,
},
})
},
})
OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:
Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
openai: {
type: "app",
app: "openai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.openai.com/v1/models`,
headers: {
Authorization: `Bearer ${this.openai.$auth.api_key}`,
},
})
},
})