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}`,
},
})
},
})
Dynamic Link Generation for Marketing Campaigns: Automate the creation of unique short links for email campaigns using customer data from a CRM like Salesforce. When a new contact is added to a campaign, Pipedream can trigger a workflow that generates a custom Short.io link, which is then emailed to the contact, providing personalized follow-up and tracking engagement.
Real-time Click Analytics Reporting: Use Short.io with Pipedream to monitor click data and generate real-time analytics reports. Connect to a data visualization tool like Google Sheets or Tableau, and whenever a Short.io link is clicked, Pipedream can append the click information to a sheet or database, enabling live tracking of campaign performance.
Automated Social Media Posting: Combine Short.io with social media platforms such as Twitter or Facebook via Pipedream. Create a workflow where blog posts or content updates on a CMS trigger the generation of a short link, which is then automatically posted to your social media profiles, streamlining the content sharing process and enhancing social media management.
Returns detailed statistics for domain in given period. See the docs.
Update original url, title or path for existing URL by id. See the docs.
Short.io uses API keys for authentication. When you connect your Short.io account, Pipedream securely stores the keys so you can easily authenticate to Short.io APIs in both code and no-code steps.
Get your secret key here.