Amara integration
Amara is an online platform that enables users to create, edit, and manage…
- Provider
- amara
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 30 available
Quick start
Call Amara from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Amara'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(
"AMARA_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 Amara 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
Amara integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
AMARA_ADD_SUBTITLE_NOTE -
AMARA_ADD_VIDEO_URL -
AMARA_CREATE_SUBTITLE_LANGUAGE -
AMARA_CREATE_SUBTITLES -
AMARA_CREATE_VIDEO -
AMARA_DELETE_VIDEO_URL -
AMARA_FETCH_SUBTITLES_DATA -
AMARA_GET_ACTIVITY -
AMARA_GET_SUBTITLE_LANGUAGE_DETAILS -
AMARA_GET_TEAM_DETAILS -
AMARA_GET_TEAM_LANGUAGES -
AMARA_GET_USER_ACTIVITY
Show all 30 actions
-
AMARA_GET_USER_DATA -
AMARA_GET_VIDEO_URL -
AMARA_GET_VIDEO_URL_DETAILS -
AMARA_LIST_ACTIVITY -
AMARA_LIST_AVAILABLE_LANGUAGES -
AMARA_LIST_SUBTITLE_ACTIONS -
AMARA_LIST_SUBTITLE_LANGUAGES -
AMARA_LIST_SUBTITLE_NOTES -
AMARA_LIST_TEAMS -
AMARA_LIST_VIDEO_ACTIVITY -
AMARA_LIST_VIDEOS -
AMARA_LIST_VIDEO_URLS -
AMARA_MAKE_VIDEO_URL_PRIMARY -
AMARA_PERFORM_SUBTITLE_ACTION -
AMARA_SEND_MESSAGE -
AMARA_UPDATE_SUBTITLE_LANGUAGE -
AMARA_UPDATE_VIDEO -
AMARA_VIEW_VIDEO_DETAILS
Build with Amara
Open OverSkill, describe what you want to build, and reference Amara in your prompt — the AI will wire up the integration automatically.