Render integration
Render is a unified cloud platform that enables developers to build and run…
- Provider
- render
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 95 available
Quick start
Call Render from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Render'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(
"RENDER_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 Render 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
95 actions exposed via the
Render integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
RENDER_ADD_HEADERS -
RENDER_ADD_OR_UPDATE_SECRET_FILE -
RENDER_ADD_RESOURCES_TO_ENVIRONMENT -
RENDER_ADD_ROUTE -
RENDER_CREATE_CUSTOM_DOMAIN -
RENDER_CREATE_ENV_GROUP -
RENDER_CREATE_ENVIRONMENT -
RENDER_CREATE_POSTGRES -
RENDER_CREATE_REGISTRY_CREDENTIAL -
RENDER_DELETE_ENV_GROUP_ENV_VAR -
RENDER_DELETE_ENV_GROUP_SECRET_FILE -
RENDER_DELETE_ENVIRONMENT
Show all 95 actions
-
RENDER_DELETE_KEY_VALUE -
RENDER_DELETE_OWNER_LOG_STREAM -
RENDER_DELETE_OWNER_METRICS_STREAM -
RENDER_DELETE_REGISTRY_CREDENTIAL -
RENDER_DELETE_SECRET_FILE -
RENDER_DELETE_SERVICE -
RENDER_DISCONNECT_BLUEPRINT -
RENDER_GET_ACTIVE_CONNECTIONS -
RENDER_GET_BANDWIDTH_SOURCES -
RENDER_GET_CPU -
RENDER_GET_CPU_LIMIT -
RENDER_GET_DISK_CAPACITY -
RENDER_GET_DISK_USAGE -
RENDER_GET_INSTANCE_COUNT -
RENDER_GET_MEMORY -
RENDER_GET_MEMORY_LIMIT -
RENDER_GET_MEMORY_TARGET -
RENDER_GET_USER -
RENDER_LINK_SERVICE_TO_ENV_GROUP -
RENDER_LIST_APPLICATION_FILTER_VALUES -
RENDER_LIST_BLUEPRINTS -
RENDER_LIST_DEPLOYS -
RENDER_LIST_DISKS -
RENDER_LIST_ENV_GROUPS -
RENDER_LIST_ENVIRONMENTS -
RENDER_LIST_ENV_VARS_FOR_SERVICE -
RENDER_LIST_INSTANCES -
RENDER_LIST_KEY_VALUE -
RENDER_LIST_LOGS -
RENDER_LIST_LOGS_VALUES -
RENDER_LIST_MAINTENANCE -
RENDER_LIST_NOTIFICATION_OVERRIDES -
RENDER_LIST_OWNER_MEMBERS -
RENDER_LIST_OWNERS -
RENDER_LIST_POSTGRES -
RENDER_LIST_POSTGRES_EXPORT -
RENDER_LIST_POSTGRES_USERS -
RENDER_LIST_PROJECTS -
RENDER_LIST_REGISTRY_CREDENTIALS -
RENDER_LIST_RESOURCE_LOG_STREAMS -
RENDER_LIST_ROUTES -
RENDER_LIST_SECRET_FILES -
RENDER_LIST_SERVICES -
RENDER_LIST_TASK_RUNS -
RENDER_LIST_TASKS -
RENDER_LIST_WEBHOOKS -
RENDER_LIST_WORKFLOWS -
RENDER_LIST_WORKFLOW_VERSIONS -
RENDER_RESTART_SERVICE -
RENDER_RESUME_SERVICE -
RENDER_RETRIEVE_CUSTOM_DOMAIN -
RENDER_RETRIEVE_DEPLOY -
RENDER_RETRIEVE_ENV_GROUP -
RENDER_RETRIEVE_ENV_GROUP_ENV_VAR -
RENDER_RETRIEVE_ENV_GROUP_SECRET_FILE -
RENDER_RETRIEVE_ENV_VAR -
RENDER_RETRIEVE_OWNER -
RENDER_RETRIEVE_OWNER_NOTIFICATION_SETTINGS -
RENDER_RETRIEVE_POSTGRES -
RENDER_RETRIEVE_PROJECT -
RENDER_RETRIEVE_REGISTRY_CREDENTIAL -
RENDER_RETRIEVE_SECRET_FILE -
RENDER_RETRIEVE_SERVICE -
RENDER_STREAM_TASK_RUNS_EVENTS -
RENDER_SUBSCRIBE_LOGS -
RENDER_SUSPEND_SERVICE -
RENDER_TRIGGER_DEPLOY -
RENDER_UPDATE_ENV_GROUP -
RENDER_UPDATE_ENV_GROUP_ENV_VAR -
RENDER_UPDATE_ENV_GROUP_SECRET_FILE -
RENDER_UPDATE_ENV_VAR -
RENDER_UPDATE_ENV_VARS_FOR_SERVICE -
RENDER_UPDATE_HEADERS -
RENDER_UPDATE_OWNER_LOG_STREAM -
RENDER_UPDATE_OWNER_NOTIFICATION_SETTINGS -
RENDER_UPDATE_POSTGRES -
RENDER_UPDATE_PROJECT -
RENDER_UPDATE_REGISTRY_CREDENTIAL -
RENDER_UPDATE_RESOURCE_LOG_STREAM -
RENDER_UPDATE_ROUTES -
RENDER_UPDATE_SECRET_FILES_FOR_SERVICE -
RENDER_UPDATE_SERVICE -
RENDER_VERIFY_CUSTOM_DOMAIN
Build with Render
Open OverSkill, describe what you want to build, and reference Render in your prompt — the AI will wire up the integration automatically.