Whether you are a bubbling startup or an established behemoth MNC organisation, T2M is your go to destination for all kinds of URL marketing endeavors.
Go to siteThe T2M URL Shortener API lets you shorten URLs, manage them, and track analytics within Pipedream's automated workflows. By integrating with Pipedream, you can create shortened URLs on the fly, update them, and get click data without manual intervention. This capability is especially useful for marketing, content distribution, and social media management, where streamlined URL management can be seamlessly embedded into broader automated tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
t2m_url_shortener: {
type: "app",
app: "t2m_url_shortener",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://t2mio.com/api/v1/urls`,
headers: {
"apikey": `${this.t2m_url_shortener.$auth.api_key}`,
"apisecret": `${this.t2m_url_shortener.$auth.api_secret}`,
},
})
},
})
Automate Social Media Posts with Shortened URLs: Create a workflow that triggers when you have a new blog post. Use the T2M URL Shortener API to shorten the post URL and then automatically publish a post to social platforms like Twitter or Facebook using their respective Pipedream integrations.
Track Marketing Campaign Performance: Whenever you create a new marketing campaign, use T2M to generate a unique shortened URL and send it via email or SMS through integrations like SendGrid or Twilio. Track clicks and engagement through the T2M dashboard, feeding data back into Pipedream for analysis and reporting.
Dynamic QR Code Generation: Generate a shortened URL for event tickets or promotional materials, and then use the T2M URL linked with a QR code generator app within Pipedream to create QR codes. This can be distributed digitally or printed for physical marketing materials, and the usage can be tracked for insights.
T2M URL Shortener uses API keys for authentication. When you connect your T2M URL Shortener account, Pipedream securely stores the keys so you can easily authenticate to T2M URL Shortener APIs in both code and no-code steps.
Generate and copy your API Keys from your dashboard under the API Keys page.