Developer docs

Agenty integration

Agenty is a web scraping and automation platform that enables users to extract…

Updated June 2026 79 actions available

Provider
agenty
Category
Other
Setup
User-supplied API key
Actions
79 available

Quick start

Call Agenty from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Agenty'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(
  "AGENTY_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 Agenty 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

79 actions exposed via the Agenty integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 79 actions
  • AGENTY_API_KEYS_RESET_BY_ID
  • AGENTY_API_KEYS_UPDATE_BY_ID
  • AGENTY_CAPTURE_SCREENSHOT
  • AGENTY_CAPTURE_SCREENSHOT_WITH_OPTIONS
  • AGENTY_CHANGE_API_KEY_STATUS_BY_ID
  • AGENTY_CONNECTIONS_GET_ALL
  • AGENTY_CONVERT_URL_TO_PDF
  • AGENTY_CONVERT_URL_TO_PDF_WITH_OPTIONS
  • AGENTY_COPY_AGENT
  • AGENTY_CREATE_WORKFLOW
  • AGENTY_DASHBOARD_GET_REPORTS_USAGE
  • AGENTY_DELETE_LIST_ROW
  • AGENTY_DELETE_LIST_ROWS
  • AGENTY_DELETE_PROJECT
  • AGENTY_DELETE_SCHEDULE
  • AGENTY_DELETE_WORKFLOW
  • AGENTY_DOWNLOAD_AGENT_RESULT
  • AGENTY_DOWNLOAD_LIST_ROWS
  • AGENTY_DOWNLOAD_USERS
  • AGENTY_DOWNLOAD_WORKFLOWS
  • AGENTY_EXTRACT_BROWSER_STRUCTURED_DATA
  • AGENTY_EXTRACT_STRUCTURED_DATA
  • AGENTY_GET_AGENT_RESULT
  • AGENTY_GET_ALL_TEAM_MEMBERS
  • AGENTY_GET_BROWSER_REDIRECTS
  • AGENTY_GET_JOB_RESULT
  • AGENTY_GET_LIST_BY_ID
  • AGENTY_GET_LIST_ROW_BY_ID
  • AGENTY_GET_PAGE_CONTENT
  • AGENTY_GET_PAGE_CONTENT_WITH_OPTIONS
  • AGENTY_GET_PROJECT_BY_ID
  • AGENTY_GET_REDIRECTS_WITH_OPTIONS
  • AGENTY_GET_SCHEDULE
  • AGENTY_GET_USER_BY_ID
  • AGENTY_GET_WORKFLOW_BY_ID
  • AGENTY_INPUTS_GET_BY_AGENT_ID
  • AGENTY_INPUTS_UPDATE_BY_AGENT_ID
  • AGENTY_JOBS_DOWNLOAD
  • AGENTY_JOBS_DOWNLOAD_FILES_BY_ID
  • AGENTY_JOBS_DOWNLOAD_RESULT_BY_ID
  • AGENTY_JOBS_GET_ALL
  • AGENTY_JOBS_GET_BY_ID
  • AGENTY_JOBS_GET_LOGS_BY_ID
  • AGENTY_JOBS_LIST_FILES_BY_ID
  • AGENTY_JOBS_START
  • AGENTY_JOBS_STOP_BY_ID
  • AGENTY_LISTS_CLEAR_ROWS
  • AGENTY_LISTS_CONTROLLER_CREATE_LIST
  • AGENTY_LISTS_DELETE_BY_ID
  • AGENTY_LISTS_DOWNLOAD
  • AGENTY_LISTS_GET_ALL
  • AGENTY_LISTS_GET_ROWS_BY_ID
  • AGENTY_LISTS_UPDATE_BY_ID
  • AGENTY_LISTS_UPLOAD_CSV
  • AGENTY_PATCH_WORKFLOW
  • AGENTY_PROJECTS_ADD_AGENTS
  • AGENTY_PROJECTS_CONTROLLER_CREATE_PROJECT
  • AGENTY_PROJECTS_GET_ALL
  • AGENTY_REMOVE_AGENT_FROM_PROJECT
  • AGENTY_SCRAPE_WEBPAGE_DATA
  • AGENTY_TOGGLE_SCHEDULE
  • AGENTY_TRANSFER_AGENT_OWNERSHIP
  • AGENTY_UPDATE_LIST_ROW
  • AGENTY_UPDATE_PROJECT
  • AGENTY_UPDATE_SCHEDULE
  • AGENTY_UPDATE_USER_BY_ID
  • AGENTY_UPDATE_WORKFLOW

Build with Agenty

Open OverSkill, describe what you want to build, and reference Agenty in your prompt — the AI will wire up the integration automatically.