Imgix integration
imgix is a real-time image processing and delivery service that enables…
- Provider
- imgix
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 53 available
Quick start
Call Imgix from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Imgix'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(
"IMGIX_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 Imgix 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
53 actions exposed via the
Imgix integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
IMGIX_ADD_ASSET_FROM_ORIGIN -
IMGIX_AUTO -
IMGIX_BLEND -
IMGIX_BLEND_ALIGN -
IMGIX_BLEND_COLOR -
IMGIX_BLEND_X -
IMGIX_BORDER -
IMGIX_BRI -
IMGIX_CANCEL_UPLOAD_SESSION -
IMGIX_CH -
IMGIX_CLOSE_UPLOAD_SESSION -
IMGIX_CON
Show all 53 actions
-
IMGIX_CREATE_IMGIX_SOURCE -
IMGIX_CREATE_UPLOAD_SESSION -
IMGIX_CS -
IMGIX_DL -
IMGIX_DPI -
IMGIX_DPR -
IMGIX_EXPIRES -
IMGIX_FIT -
IMGIX_FM -
IMGIX_FORCE_ASPECT_RATIO -
IMGIX_GET_SOURCE -
IMGIX_GET_UPLOAD_SESSION_STATUS -
IMGIX_H -
IMGIX_HIGH -
IMGIX_LIST_ASSETS -
IMGIX_LIST_REPORTS -
IMGIX_LIST_SOURCES -
IMGIX_MARK_BASE -
IMGIX_MARK_FIT -
IMGIX_MARK_H -
IMGIX_MARK_PAD -
IMGIX_MARK_W -
IMGIX_MASK -
IMGIX_MAX_H -
IMGIX_MAX_W -
IMGIX_PALETTE -
IMGIX_PREFIX -
IMGIX_PURGE_IMGIX_ASSET -
IMGIX_Q -
IMGIX_RECT -
IMGIX_ROT -
IMGIX_ROT_TYPE -
IMGIX_TXT -
IMGIX_TXT_ALIGN -
IMGIX_TXT_COLOR -
IMGIX_TXT_FONT -
IMGIX_TXT_LINE -
IMGIX_TXT_LINE_COLOR -
IMGIX_TXT_SHAD -
IMGIX_TXT_SIZE -
IMGIX_UPDATE_SOURCE
Build with Imgix
Open OverSkill, describe what you want to build, and reference Imgix in your prompt — the AI will wire up the integration automatically.