Simple, fast and powerful CDN
BunnyCDN is a powerful content delivery network (CDN) offering an API to manage and deliver content globally with ease. Through its API, you can programmatically purge cache, manage storage zones, and get detailed statistics about your content distribution. The BunnyCDN API facilitates building workflows on Pipedream that automate content delivery processes, leverage CDN data for analytics, and optimize digital asset management.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bunnycdn: {
type: "app",
app: "bunnycdn",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://bunnycdn.com/api/billing`,
headers: {
"AccessKey": `${this.bunnycdn.$auth.api_key}`,
},
})
},
})
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.