The data platform for the digital age! The best data on the market in an ethical and transparent way.
Returns the available data for a Zipcode number according to the selected dataset. See the documentation
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Returns the available data for a CNPJ number according to the selected dataset. See the documentation
Returns the available data for a CPF number according to the selected dataset. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bigdatacorp: {
type: "app",
app: "bigdatacorp",
}
},
async run({steps, $}) {
const data = {
"q": `doc{007.408.869-67}`,
"Datasets": `registration_data`,
}
return await axios($, {
method: "post",
url: `https://plataforma.bigdatacorp.com.br/pessoas`,
headers: {
"Accept": `application/json`,
"AccessToken": `${this.bigdatacorp.$auth.access_token}`,
"TokenId": `${this.bigdatacorp.$auth.token_id}`,
},
data,
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})