BigPicture provides company APIs for data-driven B2B teams.
The Bigpicture.io API allows you to enrich your customer data by collecting, unifying, and streaming it to different platforms. With Pipedream, you can automate workflows that trigger on events, manipulate and route data, and integrate with numerous other services. Leveraging Bigpicture.io's API within Pipedream's serverless platform can help you create real-time, data-driven workflows for personalized marketing, analytics, customer support, and more.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bigpicture_io: {
type: "app",
app: "bigpicture_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://company.bigpicture.io/v1/companies/find`,
headers: {
"Authorization": `${this.bigpicture_io.$auth.api_key}`,
},
params: {
domain: `pipedream.com`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.