Integration platform for developers
Exposes an HTTP API for scheduling messages to be emitted at a future time
Emit new event based on a time interval before an upcoming event in the calendar. This source uses Pipedream's Task Scheduler. See the documentation for more information and instructions for connecting your Pipedream account.
Emit new event at a specified time before a card is due.
Emit new event when a new earnings event is created for your account, such as credits from client referrals or partner payouts.
Imports client data for pre-filling applications to enrich the user experience. See the documentation
Retrieves information about clients referred from the user's White Swan account. See the documentation
Creates a new comprehensive quote request based on the information provided and generates the final quotation without further data requirements. See the documentation
Pipedream is an API that allows you to build applications that can connect to
various data sources and processes them in real-time. You can use Pipedream to
create applications that can perform ETL (Extract, Transform, and Load) tasks,
as well as to create data-driven workflows.
Some examples of applications you can build using the Pipedream API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pipedream: {
type: "app",
app: "pipedream",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pipedream.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.pipedream.$auth.api_key}`,
},
})
},
})
The White Swan API provides predictive analytics for mitigating risks in financial portfolios using artificial intelligence. By leveraging the White Swan API in Pipedream, you can automate the process of gathering insights, monitoring market conditions, and integrating advanced risk analysis into your existing financial systems. With Pipedream's serverless platform, you can construct workflows to react in real-time to data from White Swan, send alerts, and even automate trades or adjustments based on risk thresholds or predictive signals.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
white_swan: {
type: "app",
app: "white_swan",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://app.whiteswan.io/api/1.1/wf/plan_requests`,
headers: {
Authorization: `Bearer ${this.white_swan.$auth.api_key}`,
"Accept": `application/json`,
"Content-Type": `application/json`,
},
})
},
})