What do you want to automate

with T2M URL Shortener and Adyntel?

Prompt, edit and deploy AI agents that connect to T2M URL Shortener, Adyntel and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Get Google Ads by Company with the Adyntel API

Retrieve all Google ads for a given company domain. See the documentation

 
Try it
Meta Ad Search with the Adyntel API

Searches the Meta ad library. See the documentation

 
Try it
Search TikTok Ads with the Adyntel API

Search TikTok ads using a keyword. See the documentation

 
Try it
Integrate the T2M URL Shortener API with the Adyntel API
Setup the T2M URL Shortener API trigger to run a workflow which integrates with the Adyntel API. Pipedream's integration platform allows you to integrate T2M URL Shortener and Adyntel remarkably fast. Free for developers.

Overview of T2M URL Shortener

The 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.

Connect T2M URL Shortener

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}`,
      },
    })
  },
})

Connect Adyntel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    adyntel: {
      type: "app",
      app: "adyntel",
    }
  },
  async run({steps, $}) {
    const data = {
      "api_key": `${this.adyntel.$auth.api_key}`,
      "email": `${this.adyntel.$auth.username}`,
      "company_domain": `pipedream.com`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.adyntel.com/google`,
      data,
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo