SmugMug is a platform for photographers to showcase, share, and sell their photos and videos.
SmugMug is a platform for photographers to showcase, share, and sell their photos and videos. On Nagent, SmugMug is exposed as a fully-configurable images & design integration that any agent can call — 25 actions, and API key authentication. No code is required to wire SmugMug into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use SmugMug to automate the kinds of tasks images & design teams previously handled manually. Concrete examples — each one is a single agent step in Nagent — include:
Every action and trigger is paired with a structured input/output schema (visible in the sections below), so when you wire SmugMug into Helix — our agentic agent builder — the editor knows exactly what each step expects and produces. Configure once, deploy anywhere across your Nagent agents.
Every operation an agent can call against SmugMug, with input parameters and output schema. Drop these into any step of an agent built in Helix.
SMUGMUG_GET_ALBUMRetrieves detailed information about a SmugMug album using its album key. Returns album settings, metadata, image count, and links to related resources like images and user info. Use this to get comprehensive details about a specific album/gallery.
Input parameters
The unique album key that identifies the album on SmugMug. This is typically a 6-character alphanumeric string (e.g., 'SJT3DX').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_ALBUM_HIGHLIGHT_IMAGERetrieves the highlight/cover image for a SmugMug album. Returns detailed information about the album's cover image including dimensions, URLs, and metadata. Use this when you need to get the featured image for an album.
Input parameters
The unique album key (6-7 character alphanumeric string) that identifies the album. This is different from NodeID - it's the album's specific key identifier.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_ALBUM_IMAGEGet an image within a specific album context as an AlbumImage relationship object. Returns detailed information about the image including metadata, dimensions, URLs, and relationships. Use this when you need to retrieve a specific image from an album with full album context.
Input parameters
The unique album key that identifies the album. This is a 6-7 character alphanumeric string (e.g., 'SJT3DX').
The unique image key that identifies the image. This is typically a 7-8 character alphanumeric string (e.g., 'jPPKD2c').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_ALBUM_IMAGESTool to retrieve all images in a SmugMug album as AlbumImage relationship objects. Use this action when you need to list or access images within a specific album. An AlbumImage represents the relationship between an album and an image, which is useful because the same image may appear in multiple albums. The response includes image metadata, URIs for different sizes, and pagination support for large albums. Returns AlbumImage objects with fields like ImageKey, Title, Caption, WebUri, ArchivedUri, and nested Uris for accessing related resources (ImageSizes, LargestImage, etc.).
Input parameters
The number of images to retrieve per page. Default is typically 10 if not specified. Use with 'start' for pagination through large albums.
The starting index for pagination (1-indexed). Use this with 'count' to paginate through large result sets when an album contains many images.
The unique key identifier for the album. This is a unique string that identifies the album (e.g., 'SJT3DX'). You can obtain album keys from SMUGMUG_LIST_ALBUMS_IN_FOLDER or other album listing actions.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_FOLDER_ALBUMSTool to retrieve albums from a specific folder in a SmugMug user's account by nickname and folder path. Use when you need to list albums in a folder using the user's nickname and folder path rather than NodeID. This is particularly useful when you know the folder structure but don't have the NodeID.
Input parameters
The folder path within the user's account (e.g., 'SmugMug' or 'SmugMug/Heroes'). Use '/' to separate nested folders. Omit this parameter or pass empty string to get albums from the root folder.
Optional folder ID filter parameter to narrow results. This is typically a 5-character alphanumeric string.
The SmugMug user's nickname/username whose folder to retrieve albums from. This is the user's unique identifier on SmugMug (e.g., 'cmac', 'baldy').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_FOLDER_BY_USER_PATHTool to retrieve folder details by user nickname and folder path. Use when you need to access a specific folder within a user's SmugMug account using the hierarchical path structure. Note: For New SmugMug, use the Node endpoint (SMUGMUG_GET_NODE_DETAILS) instead.
Input parameters
The user's SmugMug nickname (username). This identifies which user's folder structure to access.
The path to the folder within the user's account. Use forward slashes (/) to separate nested folders (e.g., 'SmugMug' or 'Travel/2024'). For the root folder, use an empty string.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_FOLDER_DETAILSRetrieves details of a specific folder in SmugMug using its Node ID. Returns folder metadata including name, description, URL path, creation and modification dates, node ID, and optionally the URI of the album set as the highlight image for the folder. Note: This action only works with Folder-type nodes. If a non-folder node ID (e.g., Album) is provided, an error will be raised. Use SMUGMUG_GET_NODE_DETAILS for general node information.
Input parameters
The unique SmugMug Node ID of the folder to retrieve details for. This is typically a 5-character alphanumeric string (e.g., 'c4jv4'). You can obtain node IDs from the SMUGMUG_LIST_CHILD_NODES action.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_FOLDER_SUBFOLDERSRetrieves all subfolders within a specified folder in a SmugMug user's account. Use this action to navigate the folder hierarchy by fetching direct child folders of a given parent folder. Specify the user's nickname and the folder path (use empty string or omit for root-level folders). Returns folder metadata including names, URLs, security settings, and IDs.
Input parameters
The folder path within the user's account. Use '/' separator for nested folders (e.g., 'SmugMug/Heroes'). Leave empty or omit for root-level subfolders.
The SmugMug user's nickname/username. This identifies the account whose folder structure you're accessing.
Optional folder ID parameter for additional filtering. Must be at least 5 characters if provided.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_IMAGETool to retrieve details for a specific image (photo or video) by its image key. Returns comprehensive image metadata including dimensions, upload dates, geolocation, and links to related resources like sizes, metadata, and comments. Use when you need detailed information about a specific photo or video in SmugMug.
Input parameters
The unique image key identifier (e.g., 'jPPKD2c-1'). This is the key that identifies a specific photo or video in SmugMug.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_IMAGE_METADATATool to retrieve additional metadata from an image file including EXIF data, camera settings, GPS location, and other embedded information. Use when you need detailed technical information about an image, such as camera make/model, exposure settings, GPS coordinates, or timestamps.
Input parameters
The unique key identifier for the image. This is the image's unique identifier on SmugMug.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_IMAGE_SIZE_DETAILSRetrieve raw media URLs and dimensions for all available sizes of an image. Returns detailed information including direct download URLs, dimensions, and file sizes for each variant. Use this when you need to download photos or videos with specific size requirements.
Input parameters
The unique key identifier for the image. This is typically a short alphanumeric string (e.g., 'fRmtKwv-0'). You can obtain this from image listings or album contents.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_IMAGE_SIZESRetrieves available image sizes and URLs for a SmugMug image by its unique image key. Use this to get download URLs for different resolutions (tiny, thumb, small, medium, large, xlarge, original, etc.).
Input parameters
The unique alphanumeric identifier for the image (e.g., 'jPPKD2c-1'). This key is returned from album image listings or image creation endpoints.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_NODE_HIGHLIGHT_IMAGETool to get the highlight/cover image for a node (folder, album, or page). Use when you need to retrieve the representative image set for a SmugMug node.
Input parameters
The unique identifier for the node (folder, album, or page) to get the highlight/cover image for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_NODE_PARENTTool to retrieve the parent node of a specified SmugMug node. Use when navigating up the folder hierarchy or determining a node's location within the organizational structure.
Input parameters
The unique identifier for the node whose parent you want to retrieve.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_NODE_PARENTSTool to retrieve a node and all its ancestor nodes (breadcrumb trail). Use when you need to understand the full hierarchy path from a node to the root.
Input parameters
The unique identifier of the node to retrieve parent breadcrumb trail for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_USERTool to get a SmugMug user account by their nickname. Returns user details including display name, view pass hint, and links to related resources like albums, profile, and images. Use when you need to fetch basic information about a SmugMug user.
Input parameters
The user's nickname/username on SmugMug. This is the unique identifier used in the user's SmugMug URL.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_USER_BIO_IMAGETool to retrieve the bio image for a SmugMug user by their nickname (username). Use when you need to get information about a user's bio/profile image including image metadata, dimensions, URLs, and related resource URIs.
Input parameters
The nickname of the SmugMug user whose bio image should be retrieved.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_USER_FEATURED_ALBUMSRetrieves the featured albums for a SmugMug user by their nickname. Use this when you need to see which albums a user has highlighted as featured content on their profile.
Input parameters
The nickname of the SmugMug user whose featured albums you want to retrieve. This is the user's unique identifier on SmugMug.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_USER_FEATURESTool to retrieve a list of features available to a SmugMug user based on their subscription plan. Use when you need to check what capabilities or features a specific user has access to on SmugMug.
Input parameters
The user's nickname (username) on SmugMug. This is the unique identifier used to retrieve the user's available features.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_USER_PROFILERetrieves the public profile information for a SmugMug user by their nickname (username). Returns profile details including name, bio, contact email, and social media links. Use this to get information about a SmugMug photographer or user.
Input parameters
The NickName (username) of the SmugMug user to retrieve the profile for. This is the user's unique identifier on SmugMug.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_GET_USER_ROOT_NODETool to retrieve the root node of a user's folder tree on SmugMug. Use when you need to navigate a user's gallery structure or find the starting point of their folder hierarchy.
Input parameters
The SmugMug user's nickname/username. This is the unique identifier for the user whose root folder node you want to retrieve.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_LIST_CHILD_NODESLists all child nodes (folders and albums) under a specified parent node in SmugMug. Use this action to navigate SmugMug's folder/album hierarchy. Start from a user's root node (obtained from user profile) and traverse down through folders to find albums. Returns child nodes with their NodeID, Type, Name, and WebUri. Use the NodeID from results to fetch further nested children or to get detailed node information.
Input parameters
Number of child nodes to retrieve per page. Defaults to 10. Maximum is 100.
The 1-based starting index for pagination. Defaults to 1 (first page).
The unique NodeID of the parent node. You can get this from user profile (root node), node details, or previous list child nodes responses.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_SEARCH_USER_CONTENTSearch for images across a user's SmugMug content. This tool searches through a user's images by querying titles, captions, keywords, and filenames. Returns a list of matching images with details like title, caption, URLs, and related resources. Use this when you need to find specific images within a user's SmugMug account. Results are returned in paginated format with up to 100 images per page. The default ordering is by popularity, but can be changed to newest or oldest.
Input parameters
Search query text to find in the user's images. The search looks for matches in image titles, captions, keywords, and filenames. Maximum 100 characters.
Order for search results.
The number of results to return per page. Default is 10. Maximum is 100.
The starting index (1-based) for paginated results. Use this to retrieve subsequent pages of results. Default is 1.
The SmugMug user's nickname whose content to search. This is the unique username on SmugMug.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_UNLOCK_ALBUMTool to unlock a password-protected SmugMug album. Use when you need to access content in a locked album. Only available for albums that are currently password-protected.
Input parameters
The password required to unlock the album. Must match the album's configured password.
The album's unique key (e.g., 'GxmcTJ'). This identifies the password-protected album to unlock.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
SMUGMUG_UNLOCK_USERTool to unlock a user's password-protected SmugMug site. Use when you need to access a locked user's site content. This action is only available if the user's site is currently locked with a password.
Input parameters
The user's nickname (username) whose site should be unlocked. This is the SmugMug user identifier.
The site password required to unlock the user's password-protected site.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
No publicly available marketplace agent is found using this tool yet. There are 57 agents privately built on Nagent that already use SmugMug.
Build on Nagent
Connect SmugMug to any Nagent agent in minutes — no API key management, no boilerplate. Just configure and deploy.
The five questions agent builders ask before adopting a new integration.
Open the External Integrations panel inside Nagent (app.nagent.ai/externalIntegration), find SmugMug, and click "Connect Now." You'll authenticate with an API key — Nagent handles credential storage and refresh automatically. Once connected, SmugMug is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once SmugMug is connected, you configure its 25 actions directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop SmugMug steps into any workflow visually. Pick an action (e.g., one of those listed above), fill in the inputs (Helix knows the required vs. optional schema for each parameter), and connect it to upstream/downstream steps. Triggers run as the entry point of an agent, so when a SmugMug event fires, the agent kicks off automatically.
Every SmugMug action and trigger ships with a fully-typed schema — input parameters with name, type, required flag, and description, plus the output payload shape. The schemas are documented in the sections above. Helix uses these schemas to validate your configuration at build time and to type-check the data flowing between steps.
Yes. While SmugMug ships with 25 pre-built images & design actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching SmugMug together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build SmugMug-based workflows tailored to your business.