SmugMug integration
SmugMug is a platform for photographers to showcase, share, and sell their…
- Provider
- smugmug
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 25 available
Quick start
Call SmugMug from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to SmugMug'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(
"SMUGMUG_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 SmugMug 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
25 actions exposed via the
SmugMug integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
SMUGMUG_GET_ALBUM -
SMUGMUG_GET_ALBUM_HIGHLIGHT_IMAGE -
SMUGMUG_GET_ALBUM_IMAGE -
SMUGMUG_GET_ALBUM_IMAGES -
SMUGMUG_GET_FOLDER_ALBUMS -
SMUGMUG_GET_FOLDER_BY_USER_PATH -
SMUGMUG_GET_FOLDER_DETAILS -
SMUGMUG_GET_FOLDER_SUBFOLDERS -
SMUGMUG_GET_IMAGE -
SMUGMUG_GET_IMAGE_METADATA -
SMUGMUG_GET_IMAGE_SIZE_DETAILS -
SMUGMUG_GET_IMAGE_SIZES
Show all 25 actions
-
SMUGMUG_GET_NODE_HIGHLIGHT_IMAGE -
SMUGMUG_GET_NODE_PARENT -
SMUGMUG_GET_NODE_PARENTS -
SMUGMUG_GET_USER -
SMUGMUG_GET_USER_BIO_IMAGE -
SMUGMUG_GET_USER_FEATURED_ALBUMS -
SMUGMUG_GET_USER_FEATURES -
SMUGMUG_GET_USER_PROFILE -
SMUGMUG_GET_USER_ROOT_NODE -
SMUGMUG_LIST_CHILD_NODES -
SMUGMUG_SEARCH_USER_CONTENT -
SMUGMUG_UNLOCK_ALBUM -
SMUGMUG_UNLOCK_USER
Build with SmugMug
Open OverSkill, describe what you want to build, and reference SmugMug in your prompt — the AI will wire up the integration automatically.