with Woodpecker.co and Polygon?
Emit new event when an email is opened see the docs here
Emit new events when a news article related to the stock market is published.
Emit new event when an email is sent see the docs here
Emit new event when the daily price summary (open, high, low, close) for a specified stock ticker is available.
Emit new event when you get an autoreply and you set a date to resume follow-ups see the docs here
This action creates/updates a prospect. See the docs here
Retrieves financial details for a specific company by stock ticker. See the documentation
This action creates/updates a prospect in a campaign. See the docs here
Fetches historical price data for a specified stock ticker within a date range. 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: ``,
},
})
},
})
The Polygon API grants access to a wealth of financial data, including real-time and historical stock prices, trade data, and more. Within Pipedream's serverless integration platform, you can tap into Polygon to create powerful workflows. With Pipedream, you can easily connect Polygon to hundreds of other apps, automate financial data processing, send stock alerts, or synchronize market data with databases or spreadsheets, all in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
polygon: {
type: "app",
app: "polygon",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.polygon.io/v3/reference/tickers`,
headers: {
Authorization: `Bearer ${this.polygon.$auth.api_key}`,
},
})
},
})