Templated integration
Templated is a platform that automates the generation of images and PDFs…
- Provider
- templated
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 30 available
Quick start
Call Templated from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Templated'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(
"TEMPLATED_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 Templated 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
30 actions exposed via the
Templated integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
TEMPLATED_ADD_TAGS_TO_TEMPLATE -
TEMPLATED_CLONE_TEMPLATE_ACTION -
TEMPLATED_COUNT_TEMPLATE_CLONES -
TEMPLATED_CREATE_FOLDER -
TEMPLATED_CREATE_RENDER -
TEMPLATED_CREATE_TEMPLATE -
TEMPLATED_DELETE_FOLDER -
TEMPLATED_DELETE_RENDER -
TEMPLATED_DELETE_TEMPLATE -
TEMPLATED_DUPLICATE_RENDER -
TEMPLATED_GET_ACCOUNT_INFORMATION -
TEMPLATED_LIST_ALL_TEMPLATES
Show all 30 actions
-
TEMPLATED_LIST_FOLDER_RENDERS -
TEMPLATED_LIST_FOLDERS -
TEMPLATED_LIST_FOLDER_TEMPLATES -
TEMPLATED_LIST_FONTS -
TEMPLATED_LIST_GALLERY_TEMPLATES -
TEMPLATED_LIST_RENDERS -
TEMPLATED_LIST_TEMPLATE_CLONES -
TEMPLATED_LIST_TEMPLATE_RENDERS -
TEMPLATED_LIST_UPLOADS -
TEMPLATED_MERGE_RENDERS -
TEMPLATED_MOVE_RENDER_TO_FOLDER -
TEMPLATED_MOVE_TEMPLATE_TO_FOLDER -
TEMPLATED_REMOVE_TEMPLATE_TAGS -
TEMPLATED_RETRIEVE_RENDER -
TEMPLATED_RETRIEVE_TEMPLATE -
TEMPLATED_UPDATE_FOLDER -
TEMPLATED_UPDATE_TEMPLATE -
TEMPLATED_UPDATE_TEMPLATE_TAGS
Build with Templated
Open OverSkill, describe what you want to build, and reference Templated in your prompt — the AI will wire up the integration automatically.