A full-scale link management platform that gives businesses with big ideas the power of shortened links. With a TinyURL premium account, users can create, manage, track, and grow their brands through link campaigns of all sizes.
Go to siteThe TinyURL API lets you shorten URLs seamlessly, which can be particularly useful when dealing with lengthy or complex web addresses. With Pipedream, you can integrate the TinyURL API to create concise, manageable links that can be easily shared, tracked, or embedded in various digital content. Beyond simple URL shortening, using Pipedream's serverless platform enables you to automate workflows that involve generating, distributing, and monitoring TinyURLs in conjunction with other apps and services.
module.exports = defineComponent({
props: {
tinyurl: {
type: "app",
app: "tinyurl",
}
},
async run({steps, $}) {
return (await require("@pipedream/platform").axios($, {
url: `https://api.tinyurl.com/create/`,
method: `post`,
headers: {
Authorization: `Bearer ${this.tinyurl.$auth.api_token}`,
},
data: {
url: `ftp://www.example.com/my-really-long-link-that-I-need-to-shorten/84378949`,
}
})).data
},
})
Content Sharing Automation: Automate the sharing of content by shortening URLs before posting them to social media platforms like Twitter or Facebook. When a new blog post is published or a product is launched, Pipedream can trigger a workflow that creates a TinyURL and then shares that link across your social networks, tracking clicks and engagement.
Event Registration Management: When organizing an event, use Pipedream to send out invitations with TinyURLs. Set up a workflow that integrates with Eventbrite or Google Sheets, creating a short link for the registration page. This link can be included in emails, tweets, or any other promotional material. Capture RSVP data and follow up with personalized content based on the attendee's engagement with the link.
Customer Support Efficiency: Streamline customer support by providing short and easy-to-type URLs in support communications. Construct a workflow where every new support article or help guide is automatically given a TinyURL, which can be embedded in automated support emails, chatbots like Intercom, or SMS messages, making it simpler for customers to reach the help they need.
TinyURL uses API keys for authentication. When you connect your TinyURL account, Pipedream securely stores the keys so you can easily authenticate to TinyURL APIs in both code and no-code steps.
To create an API token for TinyURL please login to your account and visit Settings -> API.