White label URL Shortener
Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.
Returns detailed statistics for domain in given period. See the docs.
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}`,
},
})
},
})
package main
import (
"fmt"
pd "github.com/PipedreamHQ/pipedream-go"
)
func main() {
// Access previous step data using pd.Steps
fmt.Println(pd.Steps)
// Export data using pd.Export
data := make(map[string]interface{})
data["name"] = "Luke"
pd.Export("data", data)
}