Customgpt integration
CustomGPT.ai is a platform that enables users to create and integrate…
- Provider
- customgpt
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 40 available
Quick start
Call Customgpt from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Customgpt'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(
"CUSTOMGPT_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 Customgpt 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
40 actions exposed via the
Customgpt integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
CUSTOMGPT_ACTIVATE_PERSONA_VERSION -
CUSTOMGPT_ADD_SOURCE -
CUSTOMGPT_CLONE_PROJECT -
CUSTOMGPT_CREATE_CONVERSATION -
CUSTOMGPT_CREATE_PROJECT -
CUSTOMGPT_DELETE_PAGE -
CUSTOMGPT_DELETE_PROJECT -
CUSTOMGPT_DELETE_PROJECT_LICENSE -
CUSTOMGPT_DELETE_SOURCE -
CUSTOMGPT_EXPORT_LEADS -
CUSTOMGPT_GET_MESSAGE -
CUSTOMGPT_GET_MESSAGE_TRUST_SCORE
Show all 40 actions
-
CUSTOMGPT_GET_PAGE_METADATA -
CUSTOMGPT_GET_PLUGINS -
CUSTOMGPT_GET_PROJECT -
CUSTOMGPT_GET_PROJECT_LICENSE -
CUSTOMGPT_GET_PROJECT_SETTINGS -
CUSTOMGPT_GET_REPORT_ANALYSIS -
CUSTOMGPT_GET_REPORT_CONVERSATIONS -
CUSTOMGPT_GET_REPORT_INTELLIGENCE -
CUSTOMGPT_GET_REPORT_TRAFFIC -
CUSTOMGPT_GET_STATS -
CUSTOMGPT_GET_USAGE_LIMITS -
CUSTOMGPT_GET_USER_PROFILE -
CUSTOMGPT_LIST_CONVERSATION_MESSAGES -
CUSTOMGPT_LIST_PAGES -
CUSTOMGPT_LIST_PERSONAS -
CUSTOMGPT_LIST_PROJECT_LICENSES -
CUSTOMGPT_LIST_PROJECTS -
CUSTOMGPT_LIST_SOURCES -
CUSTOMGPT_REINDEX_PAGE -
CUSTOMGPT_SEARCH_TEAM_MEMBERS -
CUSTOMGPT_SUBMIT_MESSAGE_FEEDBACK -
CUSTOMGPT_UPDATE_PAGE_METADATA -
CUSTOMGPT_UPDATE_PROJECT -
CUSTOMGPT_UPDATE_PROJECT_LICENSE -
CUSTOMGPT_UPDATE_PROJECT_SETTINGS -
CUSTOMGPT_UPDATE_SOURCE -
CUSTOMGPT_UPDATE_USER_PROFILE -
CUSTOMGPT_VERIFY_MESSAGE
Build with Customgpt
Open OverSkill, describe what you want to build, and reference Customgpt in your prompt — the AI will wire up the integration automatically.