TinyURL

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.

Integrate the TinyURL API with the Data Stores API

Setup the TinyURL API trigger to run a workflow which integrates with the Data Stores API. Pipedream's integration platform allows you to integrate TinyURL and Data Stores remarkably fast. Free for developers.

Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
Append to record with the Data Stores API

Append to a record in your data store Pipedream Data Store. If the record does not exist, a new record will be created in an array format.

 
Try it
Check for existence of key with the Data Stores API

Check if a key exists in your Pipedream Data Store or create one if it doesn't exist.

 
Try it
Delete a single record with the Data Stores API

Delete a single record in your Pipedream Data Store.

 
Try it

Overview of TinyURL

The TinyURL API allows users to generate and manage TinyURLs for their
websites, webpages, and other web-based resources. This API allows developers
to create TinyURLs from URLs as well as manage existing TinyURLs and access
analytics data on the clicks received by each TinyURL. It also allows users to
brand their own customized URLs using additional features like custom slugs,
password protection and expiration.

Using the TinyURL API, developers can:

  • Create TinyURLs from URLs
  • Manage existing TinyURLs
  • Access analytics data on the clicks received by each TinyURL
  • Brand their own customized URLs
  • Add custom slugs to URLs
  • Password protect URLs
  • Set an expiration date on TinyURLs
  • Track and monitor visitor information
  • Monitor social media mentions and referrals
  • Generate QR codes for your TinyURLs
  • And more!

Connect TinyURL

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

Overview of Data Stores

With the Data Stores API, you can build applications that:

  • Store data for later retrieval
  • Retrieve data from a store
  • Update data in a store
  • Delete data from a store

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})