Shotstack integration
Shotstack is a cloud-based platform that enables developers, marketers, and…
- Provider
- shotstack
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 24 available
Quick start
Call Shotstack from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Shotstack'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(
"SHOTSTACK_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 Shotstack 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
24 actions exposed via the
Shotstack integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
SHOTSTACK_CREATE_TEMPLATE -
SHOTSTACK_CREATE_TEMPLATE2 -
SHOTSTACK_DELETE_INGESTED_MEDIA -
SHOTSTACK_DELETE_TEMPLATE2 -
SHOTSTACK_DELETE_WORKFLOW -
SHOTSTACK_FETCH_SOURCE -
SHOTSTACK_GET_ASSETS -
SHOTSTACK_GET_ASSETS_RENDER -
SHOTSTACK_GET_INGEST_STATUS -
SHOTSTACK_GET_RENDER_CALLBACK -
SHOTSTACK_GET_RENDER_STATUS -
SHOTSTACK_GET_SOURCE
Show all 24 actions
-
SHOTSTACK_GET_TEMPLATE -
SHOTSTACK_GET_TEMPLATE_BY_VERSION -
SHOTSTACK_GET_UPLOAD_URL -
SHOTSTACK_INSPECT_MEDIA -
SHOTSTACK_LIST_SOURCES -
SHOTSTACK_LIST_SOURCES2 -
SHOTSTACK_LIST_TEMPLATES -
SHOTSTACK_LIST_TEMPLATES2 -
SHOTSTACK_POST_UPLOAD -
SHOTSTACK_RENDER_VIDEO -
SHOTSTACK_TRANSFER_ASSET -
SHOTSTACK_UPDATE_TEMPLATE
Build with Shotstack
Open OverSkill, describe what you want to build, and reference Shotstack in your prompt — the AI will wire up the integration automatically.