Swaggerhub integration
Accelerating API delivery and quality through standards and collaboration,…
- Provider
- swaggerhub
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 44 available
Quick start
Call Swaggerhub from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Swaggerhub'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(
"SWAGGERHUB_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 Swaggerhub 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
44 actions exposed via the
Swaggerhub integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
SWAGGERHUB_ADD_ACCESS_CONTROL_FOR_TEAMS -
SWAGGERHUB_ADD_ACCESS_CONTROL_FOR_USERS -
SWAGGERHUB_DELETE_TABLE_OF_CONTENTS_ENTRY -
SWAGGERHUB_GET_ACCESS_CONTROL_USERS -
SWAGGERHUB_GET_API_DEFAULT_VERSION -
SWAGGERHUB_GET_API_VERSIONS -
SWAGGERHUB_GET_CONSUMER_PRODUCTS -
SWAGGERHUB_GET_DEFINITION -
SWAGGERHUB_GET_DOMAIN_DEFAULT_VERSION -
SWAGGERHUB_GET_DOMAIN_DEFINITION -
SWAGGERHUB_GET_DOMAIN_JSON_DEFINITION -
SWAGGERHUB_GET_DOMAIN_LIFECYCLE_SETTINGS
Show all 44 actions
-
SWAGGERHUB_GET_DOMAIN_PRIVATE_SETTINGS -
SWAGGERHUB_GET_DOMAIN_VERSIONS -
SWAGGERHUB_GET_DOMAIN_YAML_DEFINITION -
SWAGGERHUB_GET_LIFECYCLE_SETTINGS -
SWAGGERHUB_GET_ORGANIZATION_MEMBERS -
SWAGGERHUB_GET_ORGANIZATIONS -
SWAGGERHUB_GET_ORG_PROJECTS_V2 -
SWAGGERHUB_GET_OWNER_APIS -
SWAGGERHUB_GET_OWNER_DOMAINS -
SWAGGERHUB_GET_PORTAL -
SWAGGERHUB_GET_PORTAL_ACCESS_REQUESTS -
SWAGGERHUB_GET_PORTAL_ATTACHMENT -
SWAGGERHUB_GET_PORTAL_PRODUCT -
SWAGGERHUB_GET_PORTAL_PRODUCTS -
SWAGGERHUB_GET_PORTALS -
SWAGGERHUB_GET_PORTAL_TEMPLATES -
SWAGGERHUB_GET_PRIVATE_SETTINGS -
SWAGGERHUB_GET_RESOURCE_TYPES -
SWAGGERHUB_GET_TEMPLATES -
SWAGGERHUB_GET_USER_ROLES -
SWAGGERHUB_GET_YAML_DEFINITION -
SWAGGERHUB_LIST_ATTACHMENTS -
SWAGGERHUB_REMOVE_ACCESS_CONTROL_FOR_TEAMS -
SWAGGERHUB_REMOVE_ACCESS_CONTROL_FOR_USERS -
SWAGGERHUB_REMOVE_MEMBERS -
SWAGGERHUB_SEARCH_APIS -
SWAGGERHUB_SEARCH_APIS_AND_DOMAINS -
SWAGGERHUB_SEARCH_DOMAINS -
SWAGGERHUB_SEARCH_PUBLISHED_PORTAL -
SWAGGERHUB_UPDATE_ACCESS_CONTROL_FOR_TEAMS -
SWAGGERHUB_UPDATE_ACCESS_CONTROL_FOR_USERS -
SWAGGERHUB_UPDATE_PORTAL
Build with Swaggerhub
Open OverSkill, describe what you want to build, and reference Swaggerhub in your prompt — the AI will wire up the integration automatically.