Sendinblue powers advanced email marketing and automation
Returns all static metadata available for one or more cryptocurrencies. See the documentation
Returns a mapping of all cryptocurrencies to unique CoinMarketCap ids. See the documentation
Returns a paginated list of all active cryptocurrencies with latest market data. See the documentation
Send transactional email. See the docs for more information.
The SendinBlue API offers a suite of email marketing tools, including campaign creation, contact list management, and transactional email sending. It's designed for crafting personalized messages, automating marketing workflows, and tracking the performance of email campaigns. With Pipedream, you can harness the power of SendinBlue by automating interactions with other services, reacting to events with custom code, and stitching together complex workflows with minimal effort.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendinblue: {
type: "app",
app: "sendinblue",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendinblue.com/v3/account`,
headers: {
"api-key": `${this.sendinblue.$auth.api_key}`,
"content-type": `application/json`,
},
})
},
})
The CoinMarketCap API delivers real-time and historical cryptocurrency market data, including price, volume, market cap, and much more, for over 9,000 cryptocurrencies. With this data, you can track crypto trends, compare currency performance, or integrate up-to-date information into apps, widgets, or websites. Pipedream's platform enables developers to create automated workflows that can harness the vast array of data from CoinMarketCap to trigger actions, notify stakeholders, or power analytics dashboards.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
coinmarketcap: {
type: "app",
app: "coinmarketcap",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.coinmarketcap.$auth.environment}-api.coinmarketcap.com/v1/key/info`,
headers: {
"X-CMC_PRO_API_KEY": `${this.coinmarketcap.$auth.api_key}`,
},
})
},
})