Bannerbear integration
Bannerbear offers an automated image and video generation API, allowing…
- Provider
- bannerbear
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 33 available
Quick start
Call Bannerbear from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Bannerbear'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(
"BANNERBEAR_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 Bannerbear 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
33 actions exposed via the
Bannerbear integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BANNERBEAR_CREATE_PROJECT -
BANNERBEAR_CREATE_SIGNED_BASE -
BANNERBEAR_CREATE_TEMPLATE -
BANNERBEAR_CREATE_TEMPLATE_SET -
BANNERBEAR_CREATE_VIDEO_TEMPLATE -
BANNERBEAR_CREATE_WEBHOOK -
BANNERBEAR_DELETE_TEMPLATE -
BANNERBEAR_DELETE_WEBHOOK -
BANNERBEAR_GET_ACCOUNT_INFO -
BANNERBEAR_GET_ANIMATED_GIF -
BANNERBEAR_GET_AUTH -
BANNERBEAR_GET_FONTS
Show all 33 actions
-
BANNERBEAR_GET_IMAGE -
BANNERBEAR_GET_PROJECT -
BANNERBEAR_GET_SCREENSHOT -
BANNERBEAR_GET_SIGNED_BASES -
BANNERBEAR_GET_TEMPLATE -
BANNERBEAR_GET_TEMPLATE_SET -
BANNERBEAR_GET_WEBHOOK -
BANNERBEAR_HYDRATE_PROJECT -
BANNERBEAR_IMPORT_TEMPLATE -
BANNERBEAR_JOIN_PDFS -
BANNERBEAR_LIST_ANIMATED_GIFS -
BANNERBEAR_LIST_COLLECTIONS -
BANNERBEAR_LIST_EFFECTS -
BANNERBEAR_LIST_IMAGES -
BANNERBEAR_LIST_PROJECTS -
BANNERBEAR_LIST_SCREENSHOTS -
BANNERBEAR_LIST_TEMPLATES -
BANNERBEAR_LIST_TEMPLATE_SETS -
BANNERBEAR_LIST_VIDEOS -
BANNERBEAR_LIST_VIDEO_TEMPLATES -
BANNERBEAR_UPDATE_TEMPLATE_SET
Build with Bannerbear
Open OverSkill, describe what you want to build, and reference Bannerbear in your prompt — the AI will wire up the integration automatically.