Agenty is a web scraping and automation platform that enables users to extract data, monitor changes, and automate browser tasks without coding.
Agenty is a web scraping and automation platform that enables users to extract data, monitor changes, and automate browser tasks without coding. On Nagent, Agenty is exposed as a fully-configurable ai web scraping integration that any agent can call — 79 actions, and API key authentication. No code is required to wire Agenty into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use Agenty to automate the kinds of tasks ai web scraping 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 Agenty 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 Agenty, with input parameters and output schema. Drop these into any step of an agent built in Helix.
AGENTY_ADD_LIST_ROWSTool to add new rows to a list. Use when you need to insert one or more data rows into an existing list. Column names in row objects must match the list's schema.
Input parameters
Array of row objects to insert into the list. Each row object contains column name-value pairs. Column names must match the list's predefined columns for automatic mapping. Example: \[{'col1': 'Test Row 1', 'col2': 'Value A'}\]
Unique identifier of the list to add rows to
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
AGENTY_AGENTS_CONTROLLER_CREATE_AGENTCreates a new Agenty agent for web scraping, change detection, crawling, map monitoring, or brand monitoring. Use this tool to set up automated data extraction agents. Requires: - name: A descriptive name for the agent - type: One of 'scraping', 'changedetection', 'crawling', 'mapmonitoring', 'brandmonitoring' - config: Configuration object with url, browser, and collections defining what data to extract The config.collections array contains field definitions with CSS selectors or other extraction methods. Each field specifies what data to extract and how (TEXT content, ATTR for attributes, etc.). Optional: Set start=true to immediately run the agent after creation, or configure a scheduler for recurring runs. Returns the created agent with its unique agent_id for future reference.
Input parameters
Icon URL for the agent (e.g., favicon URL). Auto-generated from target URL if not provided
Agent name, max 100 characters
List of tag strings for categorizing and searching agents (e.g., \['demo', 'production'\])
Agent type: 'scraping' for web scraping, 'changedetection' for monitoring page changes, 'crawling' for site crawling, 'mapmonitoring' for map data, 'brandmonitoring' for brand mentions
Whether to automatically start the agent job immediately after creation. Default: false
Agent configuration with url, browser, and collections array. Each collection requires a 'name' and 'fields' array with field definitions for data extraction
Optional JavaScript scripts to execute before (pre) or after (post) agent execution
User ID for the agent owner (usually auto-set from authenticated user)
Version number for the agent. Auto-set to 1 for new agents if not provided
Custom agent ID (alphanumeric). If not provided, server auto-generates one
Whether the agent is publicly accessible/shareable. Default: false
Optional scheduler to run agent automatically at specified intervals or cron schedule
Account ID for the agent (usually auto-set from authenticated user)
ISO 8601 timestamp when agent was created. Auto-set by server
Whether the agent is managed by Agenty system. Typically false for user-created agents
Project ID to organize the agent under a specific project. Leave empty for no project assignment
ISO 8601 timestamp when agent was last updated. Auto-set by server
Description of the agent, max 1000 characters
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
AGENTY_AGENTS_CONTROLLER_GET_TEMPLATESTool to fetch all public agent templates and sample agents. Use when listing available templates for users to select.
Input parameters
Field name to sort by.
Maximum number of items to return. Default is 1000.
Sort direction: 'asc' or 'desc'.
Number of items to skip. Default is 0.
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
AGENTY_AGENTS_DELETE_BY_IDTool to delete a single agent by its ID. Use when you need to permanently remove an agent after confirming it exists.
Input parameters
Unique identifier of the agent to delete
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
AGENTY_AGENTS_GET_ALLTool to fetch all active agents under an account. Use after authenticating when you need to list agents with pagination and sorting.
Input parameters
Field by which to sort the results, e.g., 'name' or 'created_at'.
Maximum number of records to return.
Order of sorting; possible values are 'asc' (ascending) and 'desc' (descending).
Number of records to skip before starting to return results.
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
AGENTY_AGENTS_GET_BY_IDRetrieves complete details of a specific agent including its configuration, input settings, scheduler, and metadata. Use this tool when you need to: - View full agent configuration and settings - Check agent type and current version - Access scheduler and script configurations - Verify agent status before executing jobs - Retrieve agent metadata for updates or cloning
Input parameters
The unique identifier of the agent to retrieve. You can obtain agent IDs from the agents_get_all 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
AGENTY_AGENTS_UPDATE_BY_IDUpdates an existing agent's configuration, settings, and metadata. Use this tool to modify an agent's properties such as name, type, config, tags, scheduler, scripts, or visibility settings. The API only returns the fields that were updated in the response, not the complete agent object. To get the full updated agent details, use the 'Get Agent by ID' action after updating. Example uses: - "Update agent abc123 to change its name to 'Production Scraper'" - "Enable scheduling for agent xyz789 with a cron expression '0 */6 * * *'" - "Update agent def456 config to scrape a different URL"
Input parameters
URL or identifier for the agent icon.
Agent name (max 100 characters).
List of tags for categorization.
Agent type.
Agent configuration object containing scraping/crawling settings. Must include 'url' (target URL), 'browser' (e.g., 'playwright'), and 'collections' (array of data collection rules with fields to extract). Additional properties vary by agent type.
Optional pre/post execution scripts.
User ID that created or owns this agent.
Agent version number.
Unique identifier of the agent to update.
Whether the agent is publicly visible.
Optional scheduling settings.
Account ID that owns this agent.
ISO timestamp when the agent was created.
Whether the agent is managed by Agenty.
Project ID under which the agent is grouped.
ISO timestamp when the agent was last updated.
Agent description (max 1000 characters).
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
AGENTY_API_KEYS_CONTROLLER_CREATE_API_KEYSCreates a new API key for programmatic access to the Agenty API. The generated API key can be used to authenticate API requests with different permission levels (Owner, Admin, or Manager). The key is returned in the response and should be securely stored as it provides access to your Agenty account.
Input parameters
Name of the API key (must be at least 1 character)
Role to assign to the API key. Must be one of: Owner, Admin, or Manager
Whether the API key should be enabled upon creation. Defaults to true
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
AGENTY_API_KEYS_DELETE_BY_IDDelete an API key by its unique identifier. Use this tool to permanently revoke access for a specific API key. The key_id can be obtained from the "Get all API keys" or "Create API key" actions. This action cannot be undone.
Input parameters
Unique identifier of the API key to delete. This is the numeric ID returned when creating or listing API keys.
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
AGENTY_API_KEYS_DOWNLOADTool to download all API keys under an account in CSV format. Use when you need a complete list of API keys for export or backup.
Input parameters
Field name to sort by
Maximum number of items to return
Sort order: asc or desc
Number of items to skip before starting to collect the result set
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
AGENTY_API_KEYS_GET_ALLTool to retrieve all API keys under an account. Use after authentication when you need to list API keys with pagination and sorting.
Input parameters
Field by which to sort the results, e.g., 'created_at' or 'name'
Maximum number of API keys to return
Order of sorting: 'asc' (ascending) or 'desc' (descending)
Number of API keys to skip before starting to return results
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
AGENTY_API_KEYS_GET_BY_IDRetrieves detailed information about a specific API key by its ID. Use this action when you need to: - Get the full details of an API key including its value, role, and status - Verify the existence and properties of a specific API key - Check if an API key is enabled or disabled The key_id can be obtained from the 'Get all API keys' action or when creating a new API key.
Input parameters
The unique numeric identifier of the API key to retrieve. Can be obtained from listing API keys or after creating a new API key.
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
AGENTY_API_KEYS_RESET_BY_IDResets (regenerates) the secret value of an existing API key. The old secret becomes invalid immediately. Important: This action only confirms the reset was successful but does NOT return the new secret. After resetting, use the 'Get API Key By ID' action to retrieve the new secret value. Use this when you need to: - Rotate API key secrets for security - Invalidate a compromised API key and generate a new secret - Update credentials as part of security maintenance
Input parameters
Unique identifier of the API key to reset. You can obtain this from the Get All API Keys or Get API Key By ID 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
AGENTY_API_KEYS_UPDATE_BY_IDUpdates an existing API key's name and role by its unique identifier. This action allows you to modify the display name and permission level of an API key. Only the name and role fields can be updated; other properties are read-only. After updating, the action automatically fetches and returns the complete updated API key details. Use this when you need to: - Rename an API key for better identification - Change the permission level (Owner, Admin, or Manager) of an API key - Update multiple properties of an API key at once
Input parameters
Name of the API key. This is a display name used to identify the key
Role to assign to the API key. Valid options are: Owner (full access), Admin (administrative access), or Manager (management access)
Unique identifier of the API key to update
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
AGENTY_CAPTURE_SCREENSHOTTool to capture a full-page or visible screenshot of any webpage URL. Use when you need to capture visual representation of a webpage as an image file. The screenshot is captured using browser automation with default settings.
Input parameters
The URL of the webpage to capture as a screenshot. Must be a valid HTTP or HTTPS 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
AGENTY_CAPTURE_SCREENSHOT_WITH_OPTIONSTool to capture webpage screenshots with extensive customization options including full-page capture, image format, quality settings, viewport configuration, and post-processing. Use when you need to take screenshots of web pages with specific requirements for size, format, or rendering behavior.
Input parameters
Target webpage URL to capture. Must be a valid HTTP or HTTPS URL.
HTML content to render instead of loading from a URL. Use when you want to screenshot custom HTML without a live webpage.
Configuration options for screenshot capture.
When true, blocks advertisement scripts and resources during page load. Defaults to false.
Browser viewport configuration for screenshot rendering.
Privacy and resource optimization options.
Custom user agent string to use for the request. Useful for emulating specific browsers or devices.
Image manipulation options for post-processing.
Navigation options for loading the target 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
AGENTY_CHANGE_API_KEY_STATUS_BY_IDToggles the enabled/disabled status of an API key. This endpoint switches the key between enabled and disabled states - if the key is currently enabled, it will be disabled, and vice versa. Returns a confirmation message upon successful status change. Use this after retrieving the key_id from the list or get API key endpoints.
Input parameters
ID of the API key to enable or disable
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
AGENTY_CONNECTIONS_GET_ALLRetrieves all connections from your Agenty account. Supports pagination via limit/offset and sorting by field name. Returns an empty list if no connections exist.
Input parameters
Field name to sort results by. Common values: 'name', 'created_at', 'updated_at', 'status'.
Maximum number of connections to return in one request. Use for pagination to control page size.
Sort order direction. Use 'asc' for ascending (A-Z, oldest first) or 'desc' for descending (Z-A, newest first).
Number of records to skip for pagination. Use with limit to paginate through results. Defaults to 0.
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
AGENTY_CONVERT_URL_TO_PDFTool to convert a webpage URL to a PDF document. Use when you need to generate a PDF file from a web page for archival, reporting, or offline viewing purposes.
Input parameters
The webpage URL to convert to PDF document. Must be a valid HTTP or HTTPS 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
AGENTY_CONVERT_URL_TO_PDF_WITH_OPTIONSTool to convert a URL or raw HTML to PDF with customizable options. Use when you need to generate PDFs with specific formatting requirements like custom page sizes, margins, headers/footers, or orientation. Supports both URL-based and HTML content conversion.
Input parameters
URL of the webpage to convert to PDF. Either 'url' or 'html' must be provided.
Raw HTML content to convert to PDF. Either 'url' or 'html' must be provided.
PDF rotation angle in degrees.
PDF generation options.
Anonymous browsing options.
Whether to block ads on the page. Default is false.
Custom user agent string to use for the request.
Navigation options for page load.
Media type to emulate when rendering the page.
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
AGENTY_COPY_AGENTTool to copy an existing agent by its ID, creating a duplicate with optionally a new name. Use when you need to duplicate an agent's configuration to create a similar agent without starting from scratch.
Input parameters
Name for the copied agent. If not provided, a default name will be generated based on the original agent name.
ID of the agent to copy. You can obtain agent IDs from the agents_get_all 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
AGENTY_CREATE_WORKFLOWCreates a new workflow in Agenty to automate actions based on agent events. Use this to set up automated responses like sending emails, triggering webhooks, or notifications when specific agent events occur (e.g., job completed, job failed).
Input parameters
Name of the workflow. Must be non-empty and maximum 200 characters.
Configuration specifying which agents should trigger this workflow. Set all=true to apply to all agents.
Array of actions to execute when the workflow is triggered. Each action must have a type and config object.
Trigger configuration defining when the workflow executes. Must include a 'when' array with at least one event type.
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
AGENTY_DASHBOARD_GET_REPORTS_USAGETool to fetch account reports like pages used by agent, date, and product. Use when analyzing usage over a date range.
Input parameters
End date in YYYY-MM-DD format (e.g., '2024-01-31'); defaults to today if omitted
Start date in YYYY-MM-DD format (e.g., '2024-01-01'); defaults to 30 days before today if omitted
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
AGENTY_DELETE_LIST_ROWTool to delete a specific row from a list by its unique identifier. Use when you need to permanently remove a single row from a list.
Input parameters
Unique identifier of the row to delete
Unique identifier of the list containing the row to delete
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
AGENTY_DELETE_LIST_ROWSTool to delete specific rows from a list by their IDs. Use when you need to remove one or more rows from a list by providing their unique identifiers.
Input parameters
List of row IDs to delete. Each ID will be passed as a separate query parameter (e.g., ?id=xxx&id=yyy). At least one ID is required.
Unique identifier of the list containing the rows to delete
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
AGENTY_DELETE_PROJECTTool to delete a project by its ID. Use when you need to permanently remove a project. This action cannot be undone, so ensure the project ID is correct before deletion.
Input parameters
The project identifier number to be deleted. This is the unique ID of the project you want to permanently remove.
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
AGENTY_DELETE_SCHEDULETool to delete a schedule for an agent by its agent ID. Use when you need to remove scheduled automation for a specific agent.
Input parameters
Unique identifier of the agent whose schedule should be deleted
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
AGENTY_DELETE_WORKFLOWTool to delete a workflow by its ID. Use when you need to permanently remove a workflow after confirming it exists.
Input parameters
Unique identifier of the workflow to delete
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
AGENTY_DOWNLOAD_AGENT_RESULTTool to download agent results by agent ID in CSV, TSV or JSON format. Use when you need to export or analyze agent execution results as a file.
Input parameters
Field name to sort results by
Maximum 1000 results per request - number of results to return
Sort order options.
Output format for the downloaded file - must be CSV, TSV or JSON
Pagination offset - number of results to skip before starting to collect the result set
Search filter to apply on results
The agent identifier whose results to download
Collection number - which collection of results to fetch
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
AGENTY_DOWNLOAD_LIST_ROWSTool to download list rows as CSV file. Use when you need to export or backup all rows from a specific list.
Input parameters
Unique identifier of the list to download rows from
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
AGENTY_DOWNLOAD_USERSTool to download users list in CSV format. Use when you need to export or backup the complete list of team members and users.
Input parameters
Field name to sort by
Maximum number of items to return
Sort order: asc or desc
Number of items to skip before starting to collect the result set
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
AGENTY_DOWNLOAD_WORKFLOWSTool to download all workflows in CSV format. Use when you need to export or backup all workflows from your account.
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
AGENTY_EXTRACT_BROWSER_STRUCTURED_DATATool to auto-extract structured data from a webpage including schema.org, RDFa, Microdata, and JSON-LD formats. Use when you need to automatically extract semantic markup from web pages without writing custom scraping rules. The API returns organized structured data in four categories: metatags, microdata, rdfa, and jsonld.
Input parameters
The webpage URL from which to extract structured data (schema.org, RDFa, Microdata, JSON-LD). Must be a valid HTTP/HTTPS URL.
Browser navigation settings for page load behavior.
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
AGENTY_EXTRACT_STRUCTURED_DATATool to auto-extract structured data from a webpage URL. Use when you need to extract schema.org, RDFa, Microdata, or JSON-LD structured data from web pages.
Input parameters
The URL of the webpage from which to extract structured data (schema.org, RDFa, Microdata, JSON-LD). Must be a valid HTTP/HTTPS 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
AGENTY_GET_AGENT_RESULTTool to get the most recent result data for an agent. Use when you need to retrieve and view the scraped/collected data from an agent's latest execution. Returns result data with pagination support.
Input parameters
Field name to sort by.
Maximum number of records to return (max 1000).
Sort order: asc for ascending or desc for descending.
Number of records to skip before starting to return results.
Search term to filter results.
Unique identifier of the agent to get results for. You can obtain agent IDs from the agents_get_all action.
Collection name to filter results by.
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
AGENTY_GET_ALL_TEAM_MEMBERSTool to retrieve all team members (users) under an account. Use after authentication when you need to list team members with pagination, sorting, and search filtering.
Input parameters
Field by which to sort the results, e.g., 'name', 'email', or 'created_at'.
Maximum number of users to return. Maximum allowed is 1000.
Order of sorting: 'asc' (ascending) or 'desc' (descending).
Number of users to skip before starting to return results. Used for pagination.
Search term to filter users by name or email.
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
AGENTY_GET_BROWSER_REDIRECTSTool to get the complete redirect chain for a URL. Use when you need to trace how a URL redirects, including both server-side (HTTP 3xx redirects) and client-side redirects (JavaScript, meta tags). Returns an ordered list of all redirect steps from the original URL to the final destination.
Input parameters
The URL to check for redirects. Must be a valid HTTP or HTTPS URL. The API will follow all redirects including server-side (3xx status codes) and client-side redirects (JavaScript, meta tags, etc.).
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
AGENTY_GET_JOB_RESULTTool to get the result data from a completed job. Use when you need to retrieve and view the scraped/collected data from a finished job. Returns result data with pagination support.
Input parameters
Field name to sort by.
Maximum number of records to return (<=1000).
Sort order: asc for ascending or desc for descending.
Format for the result data.
Unique identifier of the job to get result for. Get this from jobs_get_all or jobs_start actions.
Number of records to skip before starting to return results.
Search term to filter results.
Collection name to filter results by.
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
AGENTY_GET_LIST_BY_IDRetrieves detailed information about a specific list by its ID. Use this action when you need to: - Get the full details of a list including its name, description, and metadata - Verify the existence of a specific list - Check when a list was created or last updated - Access additional data associated with a list The list_id can be obtained from the 'Get all lists' action or when creating a new list.
Input parameters
The unique identifier of the list to retrieve. Can be obtained from listing all lists or after creating a new list.
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
AGENTY_GET_LIST_ROW_BY_IDTool to fetch a specific row by its ID from a list. Use when you need to retrieve a single data entry from a list using its unique identifier.
Input parameters
Unique identifier of the row to fetch (MongoDB ObjectId format)
Unique identifier of the list containing the row
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
AGENTY_GET_PAGE_CONTENTTool to fetch the complete HTML content of any webpage URL. Use this when you need to retrieve the full HTML source code of a page, including content rendered after JavaScript execution. The API navigates to the URL using proxies and captures the page's source content.
Input parameters
The URL of the webpage to fetch HTML content from. Must be a valid HTTP or HTTPS 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
AGENTY_GET_PAGE_CONTENT_WITH_OPTIONSTool to fetch HTML content of a webpage with custom options including ad blocking. Use this when you need to retrieve the full HTML source of a webpage, particularly for web scraping or content analysis tasks. The tool supports ad blocking to speed up page loads and reduce unnecessary content.
Input parameters
The webpage URL to fetch HTML content from. Must be a valid HTTP or HTTPS URL.
Whether to block advertisements on the page. Set to true to block ads, false to allow them. Defaults to true for faster page loads.
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
AGENTY_GET_PROJECT_BY_IDRetrieves complete details of a specific project by its ID, including name, description, creator information, and timestamps. Use this to get project metadata before adding agents, checking project existence, or verifying project details for updates.
Input parameters
The unique identifier of the project to retrieve. You can obtain project IDs from the projects_get_all 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
AGENTY_GET_REDIRECTS_WITH_OPTIONSTool to get the complete redirect chain of a URL with custom navigation options. Use when you need to trace URL redirects including both server-side (3xx) and client-side redirects (JavaScript, meta tags). Supports custom timeout and navigation wait conditions to ensure all redirects are captured.
Input parameters
The URL to follow and get the complete redirect chain. Must be a valid HTTP or HTTPS URL.
Browser navigation settings for page load behavior.
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
AGENTY_GET_SCHEDULETool to retrieve the schedule configuration for a specific agent. Use when you need to check the current scheduling settings for an agent.
Input parameters
Unique identifier of the agent whose schedule 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
AGENTY_GET_USER_BY_IDTool to retrieve detailed information about a user by their ID. Use this to fetch user profile data including email, role, status, and activity timestamps.
Input parameters
The unique numeric identifier of the user to retrieve. This is the user's ID in the Agenty system.
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
AGENTY_GET_WORKFLOW_BY_IDRetrieves complete details of a specific workflow by its ID. Use this to view workflow configuration including agents, triggers, and actions before updating or deleting.
Input parameters
The unique identifier of the workflow to retrieve. This ID is returned when creating a workflow or can be obtained from listing workflows.
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
AGENTY_INPUTS_GET_BY_AGENT_IDRetrieves the input configuration for a specific agent by its ID. Returns the input source type (URL, manual list, saved list reference, or another agent's output) and associated configuration details. Use this to inspect an agent's current input setup before modifying it or starting a job, or to verify what data sources an agent will process.
Input parameters
Unique identifier of the agent to retrieve inputs 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
AGENTY_INPUTS_UPDATE_BY_AGENT_IDUpdates the input configuration for a specific agent in Agenty. This tool modifies where an agent gets its input data from. You can configure the agent to: - Pull from a URL feed (type='url') - Use a manually specified list of URLs (type='manual') - Reference data from an Agenty list (type='list') - Use output from another agent (type='agent') Use this after creating or identifying an agent to set up its data source before running jobs.
Input parameters
Source identifier. For 'url': the URL string. For 'list': the list ID. For 'agent': the source agent ID. Not used for 'manual' type
List of URLs for manual input. Required and only used when type is 'manual'. Each entry should be a valid URL string
Type of input source to configure. Options: 'url' (URL feed), 'manual' (direct URL list), 'list' (reference to a list), 'agent' (output from another agent)
Field name to extract from the source. Required for 'list' and 'agent' types to specify which field to use as input
Unique identifier of the agent whose input configuration to update
Collection number to use (default: 1). Specifies which collection in the agent configuration to apply the input to
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
AGENTY_JOBS_DOWNLOADTool to download all jobs in CSV format. Use when you need a complete list of jobs for export or analysis.
Input parameters
Field name to sort by
Maximum number of jobs to return
Sort order: asc or desc
Number of jobs to skip before starting to collect the result set
Filter jobs to only those created by this agent ID
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
AGENTY_JOBS_DOWNLOAD_FILES_BY_IDTool to download output files by job ID. Use when you need to fetch a specific output file after a job completes.
Input parameters
Name of the specific file to download (e.g., 'collection1.csv', 'logs.txt.gz'). Use the 'List job files' action first to discover available files.
Unique identifier of the job to download files from.
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
AGENTY_JOBS_DOWNLOAD_RESULT_BY_IDTool to download the agent output result by job ID. Use when you need to fetch the final output of a completed job in CSV, TSV, or JSON format.
Input parameters
Field name to sort by
Maximum number of items to return
Sort order: asc or desc
Format of the downloaded file: CSV, TSV, or JSON
Unique identifier of the job to download result for
Number of items to skip before starting to collect the result set
Result collection number to fetch
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
AGENTY_JOBS_GET_ALLTool to fetch all jobs under an account. Use when you need to view and filter the list of jobs with pagination and sorting.
Input parameters
Field by which to sort the results, e.g., 'created_at' or 'status'.
Maximum number of records to return (<=1000).
Order of sorting; either 'asc' for ascending or 'desc' for descending.
Number of records to skip before starting to return results.
Filter jobs by specific agent 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
AGENTY_JOBS_GET_BY_IDRetrieves comprehensive details about a specific job including its status, progress metrics (pages processed/succeeded/failed), timing information (created/started/completed times), resource consumption (page credits), and any error messages. Use this action to check job status, monitor execution progress, or diagnose job failures. Returns complete job metadata needed before downloading results.
Input parameters
The unique numeric identifier of the job to retrieve. Get this from jobs_get_all or jobs_start 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
AGENTY_JOBS_GET_LOGS_BY_IDTool to fetch logs for a given job by its ID. Use when you need to review or debug job execution logs with pagination support.
Input parameters
Maximum number of log lines to return (pagination limit).
Unique identifier of the job to fetch logs for.
Number of log lines to skip (pagination offset).
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
AGENTY_JOBS_LIST_FILES_BY_IDLists all output files generated by a specific job. Returns file names and sizes for available downloads including CSV/JSON/TSV data exports and compressed logs. Use this after a job completes to discover what output files are available before downloading them.
Input parameters
Unique numeric identifier of the job whose output files you want to list.
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
AGENTY_JOBS_STARTTool to start a new agent job. Use when you need to trigger execution of an existing agent.
Input parameters
Unique identifier of the agent to start the job 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
AGENTY_JOBS_STOP_BY_IDTool to stop a running job by job ID. Use when you need to halt an in-progress job before it completes. Confirm the job ID beforehand to avoid unintended stops.
Input parameters
Unique numeric identifier of the job to stop.
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
AGENTY_LISTS_CLEAR_ROWSTool to clear all rows in a list by its ID. Use when you need to wipe out all data in a list before re-populating (e.g., "Clear all rows in list 123").
Input parameters
Unique identifier of the list to clear rows from
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
AGENTY_LISTS_CONTROLLER_CREATE_LISTTool to create a new list. Use after preparing the list name and optional description. Example: "Create a list named 'Contacts' with description 'Potential leads'."
Input parameters
Name of the list, max 100 characters
Description of the list, max 250 characters
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
AGENTY_LISTS_DELETE_BY_IDTool to delete a specific list by its ID. Use when you need to permanently remove a list after confirming it exists.
Input parameters
Unique identifier of the list to delete
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
AGENTY_LISTS_DOWNLOADTool to download all lists in CSV format. Use when you need a complete set of lists for export or backup.
Input parameters
Field name to sort by
Maximum number of items to return
Sort order: asc or desc
Number of items to skip before starting to collect the result set
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
AGENTY_LISTS_GET_ALLTool to retrieve all lists under an account. Use after authentication when you need to list lists with pagination and sorting.
Input parameters
Field by which to sort the results, e.g., 'name' or 'created_at'.
Maximum number of lists to return.
Order of sorting; possible values are 'asc' (ascending) and 'desc' (descending).
Number of lists to skip before starting to return results.
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
AGENTY_LISTS_GET_ROWS_BY_IDTool to fetch all rows in a specified list. Use when you need to retrieve all data entries from a list with optional pagination and sorting. Example: "Fetch rows from list '61db...' with limit=50".
Input parameters
Column name to sort the results by
Number of rows to return per request
Sort order, either 'asc' or 'desc'
Number of rows to skip before starting to return rows
Unique identifier of the list to fetch rows from
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
AGENTY_LISTS_UPDATE_BY_IDTool to update a list's name and optionally description by list ID. The name field is always required. Use when you need to modify list metadata after confirming its ID. Example: "Update list 123 with name 'My Updated List' and description 'New description'".
Input parameters
Name for the list, max 100 characters. This field is required by the API.
Unique identifier of the list to update
Description for the list, max 250 characters. This field is optional.
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
AGENTY_LISTS_UPLOAD_CSVTool to upload a CSV file to an Agenty list for bulk import of data rows. Use this action when you need to: - Import multiple rows of data into an existing list from a CSV file - Bulk update list data - Add structured tabular data to a list Prerequisites: The target list must already exist. Use the 'Create List' action first if needed.
Input parameters
CSV file to upload to the list.
Unique identifier of the list to which the CSV will be uploaded. Must be a valid existing list ID.
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
AGENTY_PATCH_WORKFLOWTool to partially update a workflow by ID. Use when you need to update specific fields of a workflow without replacing the entire workflow object. This action performs a PATCH operation, allowing you to update only the fields you specify (e.g., just the name) without affecting other workflow properties. Currently supports updating the workflow name.
Input parameters
The unique identifier of the workflow to update. This is the workflow ID obtained from listing workflows or when the workflow was created.
New name for the workflow. Use this to rename the workflow for better identification.
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
AGENTY_PROJECTS_ADD_AGENTSAdd one or more agents to an Agenty project to organize and group related agents together. This action associates agents with a project, allowing better organization and management of your automation workflows. The response includes the complete updated project information with all associated agents. Prerequisites: - Project must exist (use projects_get_all to find valid project IDs) - Agent(s) must exist (use agents_get_all to find valid agent IDs) Example usage: "Add agents \['tx8lubfbun', 'o3xuc2n8es'\] to project 7"
Input parameters
List of agent IDs to add to the project (e.g., \['tx8lubfbun', 'o3xuc2n8es'\]). Must contain at least one agent ID.
Unique identifier of the project to which agents will be added
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
AGENTY_PROJECTS_CONTROLLER_CREATE_PROJECTCreates a new project in Agenty. Use this to initialize a project with a name and optional description.
Input parameters
Name of the project. Must be non-empty and maximum 64 characters.
Optional description of the project.
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
AGENTY_PROJECTS_GET_ALLRetrieve all projects in the authenticated user's account. Returns a paginated list of projects with metadata (total count, pagination info). Use this to discover available projects, check project existence, or get project IDs for other operations. Supports sorting by fields like 'name' or 'created_at'.
Input parameters
Field by which to sort the results, e.g., 'name' or 'created_at'.
Maximum number of projects to return.
Order of sorting; possible values are 'asc' (ascending) and 'desc' (descending).
Number of projects to skip before starting to return results.
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
AGENTY_REMOVE_AGENT_FROM_PROJECTRemove an agent from an Agenty project. Use when you need to disassociate an agent from a project while keeping both the agent and project intact. The agent will no longer be part of the project's organization structure.
Input parameters
Unique identifier of the agent to remove from the project
Unique identifier of the project from which the agent will be removed
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
AGENTY_SCRAPE_WEBPAGE_DATATool to scrape data from any webpage using jQuery/CSS selectors. Use when you need to extract specific data from web pages by defining jQuery selector expressions. Each query field maps a name to a jQuery expression (e.g., "$('h1').text()" extracts the h1 text). The browser will load the page, execute JavaScript, and run your jQuery queries to extract the data.
Input parameters
The webpage URL to scrape data from. Must be a valid HTTP or HTTPS URL.
Debug options to include additional information in the response.
jQuery-based extraction queries mapping field names to jQuery selector expressions. Each key is a field name, and each value is a jQuery expression like "$('h1').text()" or "$('a').attr('href')". The expressions will be executed in the browser context to extract data.
Whether to block advertisements on the page. Default is true.
Custom user agent string to use when making the request. If not provided, uses the browser's default user agent.
Browser navigation settings for page load behavior.
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
AGENTY_TOGGLE_SCHEDULETool to toggle schedule on/off for an agent. Use when you need to enable or disable an agent's scheduled execution without modifying other agent settings.
Input parameters
Set to true to enable the agent's schedule, or false to disable it.
Unique identifier of the agent whose schedule should be toggled.
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
AGENTY_TRANSFER_AGENT_OWNERSHIPTool to transfer agent ownership to another Agenty account. Use when you need to move an agent to a different user's account by specifying their email address.
Input parameters
Email address of the target Agenty account to transfer the agent to. The email must be associated with an existing Agenty account.
The unique identifier of the agent to transfer. You can obtain agent IDs from the agents_get_all 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
AGENTY_UPDATE_LIST_ROWTool to update a specific row in a list by list ID and row ID. Use when you need to modify existing data in a list row. The row_data must include the '_id' field and any column fields (col1, col2, etc.) you want to update.
Input parameters
Unique identifier of the row to update within the list
Unique identifier of the list containing the row to update
JSON object containing the row data to update. Must include '_id' field matching the row ID. Column fields (col1, col2, col3, etc.) correspond to columns in the list. Example: {'_id': '698dc77d125553af8b7c5700', 'col1': 'Updated Value', 'col2': 'Another Value'}
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
AGENTY_UPDATE_PROJECTUpdate an existing project's name and description in Agenty. Use this to modify project details such as changing the project name or updating its description.
Input parameters
Unique identifier of the project to update.
Name of the project. Required field that must be non-empty and maximum 64 characters.
Description of the project.
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
AGENTY_UPDATE_SCHEDULEUpdates the schedule configuration for a specific agent. Use when you need to modify how often an agent runs automatically.
Input parameters
Schedule type: 'cron' for cron expression-based scheduling or 'interval' for frequency-based scheduling.
Unique identifier of the agent whose schedule to update.
Frequency value in seconds for interval-based scheduling (e.g., 3600 for hourly). Required when type is 'interval'.
Cron expression for cron-based scheduling (e.g., '0 0 12 * * ?' for daily at noon). Required when type is 'cron'. Must be a valid CRON expression.
Enable or disable the schedule. When false, the schedule exists but will not trigger the agent.
Human-readable description of the schedule. This is typically auto-generated by Agenty based on the cron expression or frequency.
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
AGENTY_UPDATE_USER_BY_IDTool to update a user's information by user ID. Use this to modify user properties including email, role, status, name, and subscription settings. Email, role, and status are required fields.
Input parameters
User's full name
User role. Valid options are: Owner (full access), Admin (administrative access), or Manager (management access).
User email address. Must be a valid email format.
URL of the user's avatar image
User status. Must be either 'active' or 'inactive'.
Unique identifier of the user to update
Whether the user's email address has been verified
Whether the user is subscribed to receive email notifications
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
AGENTY_UPDATE_WORKFLOWTool to update an existing workflow's configuration by workflow ID. Use this to modify workflow properties including name, agent selection, trigger conditions, and actions to execute. Workflows automate responses to agent events such as job completion, errors, or change detection. Common use cases include sending notifications, triggering webhooks, or updating external systems.
Input parameters
Unique identifier of the workflow to update.
Updated name for the workflow (e.g., 'Send Email on Job Completion').
Configuration specifying which agents this workflow applies to.
Array of actions to execute when the workflow is triggered. Must contain at least one action.
Trigger configuration defining when this workflow should execute.
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 68 agents privately built on Nagent that already use Agenty.
Build on Nagent
Connect Agenty 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 Agenty, and click "Connect Now." You'll authenticate with an API key — Nagent handles credential storage and refresh automatically. Once connected, Agenty is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once Agenty is connected, you configure its 79 actions directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop Agenty 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 Agenty event fires, the agent kicks off automatically.
Every Agenty 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 Agenty ships with 79 pre-built ai web scraping actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching Agenty together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build Agenty-based workflows tailored to your business.