Short Io integration
Short.io is a URL shortening service that allows users to create branded short…
- Provider
- short_io
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 41 available
Quick start
Call Short Io from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Short Io's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"SHORT_IO_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Short Io API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
41 actions exposed via the
Short Io integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
SHORT_IO_ADD_TAG_TO_LINKS_BULK -
SHORT_IO_ARCHIVE_LINK -
SHORT_IO_CREATE_FOLDER -
SHORT_IO_CREATE_LINK -
SHORT_IO_DELETE_LINK -
SHORT_IO_DELETE_LINK_PERMISSION -
SHORT_IO_DELETE_LINKS_BULK -
SHORT_IO_DUPLICATE_LINK -
SHORT_IO_GENERATE_QR_CODE -
SHORT_IO_GET_BUNDLE_TEMPLATES -
SHORT_IO_GET_DOMAIN_BY_ID -
SHORT_IO_GET_DOMAINS_LINK_CLICKS
Show all 41 actions
-
SHORT_IO_GET_DOMAINS_PATHS -
SHORT_IO_GET_DOMAIN_STATISTICS -
SHORT_IO_GET_FOLDER -
SHORT_IO_GET_LINK_BY_ORIGINAL_URL -
SHORT_IO_GET_LINK_COUNTRIES -
SHORT_IO_GET_LINK_INFO_BY_LINK_ID -
SHORT_IO_GET_LINK_INFO_BY_PATH -
SHORT_IO_GET_LINK_OPEN_GRAPH_PROPERTIES -
SHORT_IO_GET_LINK_PERMISSIONS -
SHORT_IO_GET_LINK_REGION_LIST_COUNTRY -
SHORT_IO_GET_LINK_REGIONS -
SHORT_IO_GET_LINKS_BY_ORIGINAL_URL -
SHORT_IO_GET_LINKS_LIST -
SHORT_IO_GET_LINK_STATISTICS -
SHORT_IO_GET_LINK_TWEETBOT -
SHORT_IO_LIST_DOMAINS -
SHORT_IO_LIST_FOLDERS -
SHORT_IO_POST_DOMAIN_LINK_CLICKS -
SHORT_IO_POST_DOMAINS_BY_INTERVAL -
SHORT_IO_POST_DOMAINS_LAST_CLICKS -
SHORT_IO_POST_DOMAIN_STATS -
SHORT_IO_POST_DOMAINS_TOP -
SHORT_IO_POST_LINKS_ARCHIVE_BULK -
SHORT_IO_POST_LINKS_BULK -
SHORT_IO_POST_LINKS_QR_BULK -
SHORT_IO_POST_LINKS_UNARCHIVE_BULK -
SHORT_IO_UNARCHIVE_LINK -
SHORT_IO_UPDATE_DOMAIN_SETTINGS -
SHORT_IO_UPDATE_LINK
Build with Short Io
Open OverSkill, describe what you want to build, and reference Short Io in your prompt — the AI will wire up the integration automatically.