With the Short.io API, you can create powerful links for a variety of use-cases. It is possible to shorten, brand, measure, and even monetize your links.
Here is a list of uses for the Short.io API:
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}`,
},
})
},
})
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.