- Provider
- e2b
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 27 available
Quick start
Call E2b from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to E2b'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(
"E2B_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 E2b 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
27 actions exposed via the
E2b integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
E2B_CONNECT_SANDBOX -
E2B_CREATE_TEMPLATE -
E2B_CREATE_WEBHOOK -
E2B_DELETE_SANDBOXES -
E2B_DELETE_WEBHOOK -
E2B_GET_HEALTH -
E2B_GET_SANDBOX -
E2B_GET_SANDBOXES_LOGS -
E2B_GET_SANDBOX_LIFECYCLE_EVENTS -
E2B_GET_SANDBOX_METRICS -
E2B_GET_TEAMS_METRICS -
E2B_GET_TEAMS_METRICS_MAX
Show all 27 actions
-
E2B_GET_TEMPLATES_BUILD_STATUS -
E2B_GET_TEMPLATES_FILES -
E2B_GET_WEBHOOK -
E2B_LIST_SANDBOXES -
E2B_LIST_SANDBOXES_METRICS -
E2B_LIST_TEAM_SANDBOX_LIFECYCLE_EVENTS -
E2B_LIST_TEMPLATES -
E2B_LIST_WEBHOOKS -
E2B_PAUSE_SANDBOX -
E2B_POST_SANDBOXES -
E2B_POST_SANDBOXES_TIMEOUT -
E2B_REFRESH_SANDBOX -
E2B_START_TEMPLATE_BUILD -
E2B_UPDATE_TEMPLATE -
E2B_UPDATE_WEBHOOK
Build with E2b
Open OverSkill, describe what you want to build, and reference E2b in your prompt — the AI will wire up the integration automatically.