Turn any long URL into a short, clean link. Optionally set an expiry so the link stops working after a number of hours. The short link redirects to the original URL and tracks clicks.
Free
Set these inside the intent when you run it.
The URL to shorten.
Hours until the short link expires. Omit for a permanent link.
A short URL that redirects to the original link.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the URL Shortener skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/link/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"shorten","url":"https://example.com/very/long/path?with=many&query=params","ttl_hours":48}}'Example requests