White label URL Shortener
Short.io provides a robust API for URL shortening, allowing you to create, delete, and track shortened links programmatically. By integrating with Pipedream, you can automate link creation or aggregation of click data in real-time, triggering workflows in response to events like link clicks or creating short links in bulk from a data source.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
short: {
type: "app",
app: "short",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.short.io/api/domains`,
headers: {
"Accept": `application/json`,
"Authorization": `${this.short.$auth.secret_key}`,
},
})
},
})
The Tally API offers a suite of automation capabilities for Tally, a form-building platform that allows users to create forms without needing to code. Leveraging this API within Pipedream can supercharge your data collection and processing. With Pipedream, you can react to form submissions in real-time, sync data to other services, and customize your workflows to suit various use cases including data analysis, lead capture, and feedback management.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tally: {
type: "app",
app: "tally",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tally.so/me`,
headers: {
Authorization: `Bearer ${this.tally.$auth.oauth_access_token}`,
"Accept": `application/json`,
},
})
},
})