# Sim Documentation > The open-source AI workspace where teams build, deploy, and manage AI agents. Sim is the open-source AI workspace where teams build, deploy, and manage AI agents. Connect 1,000+ integrations and every major LLM to create agents that automate real work — visually, conversationally, or with code. Trusted by over 100,000 builders. ## Documentation Overview This file provides an overview of our documentation. For full content of all pages, see [llms-full.txt](https://docs.sim.ai/llms-full.txt). ## Main Sections ### Root - [Documentation](https://docs.sim.ai/) ### Academy - [What is Sim?](https://docs.sim.ai/academy) Sim is a unified workspace for building and operating AI systems, data, workflows, and the integrations that connect them to the outside world. - [The Agent Block](https://docs.sim.ai/academy/agents/block) Inside the Agent block, a run becomes a conversation: a message stack the model reads, a swappable brain, and an output bundle every later block can use. - [Agents](https://docs.sim.ai/academy/agents/intro) An AI agent is a Sim workflow that uses Agent blocks: the reasoning engine you shape, parameterize, and compose into intelligent processes. - [Memory](https://docs.sim.ai/academy/agents/memory) One setting gives an agent memory: a conversation ID under which every turn is kept, so the next run starts from the conversation so far. - [Skills](https://docs.sim.ai/academy/agents/skills) A skill is a written method the agent reads when it decides it's relevant, turning a vague guess into a sourced, repeatable procedure without crowding the prompt. - [Tool Calling](https://docs.sim.ai/academy/agents/tool-calling) Give an agent tools and it works in a loop, deciding, calling, reading results, and converging on an answer you can audit call-by-call in the logs. - [Building with Chat](https://docs.sim.ai/academy/chat/building) Describe the system you want in plain language, and Sim builds it, then tests it, debugs it, shows you the evidence, and deploys it, all inside one conversation. - [Chat](https://docs.sim.ai/academy/chat/intro) The chat in Sim is your workspace control plane: one conversation that queries your tables, searches your docs, runs and schedules workflows, researches the outside world, and composes it all into new systems. - [Files](https://docs.sim.ai/academy/files/intro) Sim natively supports files, store, reference, and pass around documents and media so workflows can read and produce real assets like PDFs, images, audio, and video. - [The File Object](https://docs.sim.ai/academy/files/object) Every file in Sim, whatever made it, travels as the same object, so producers and consumers compose without special handling. - [Tables](https://docs.sim.ai/academy/tables/intro) Tables store structured data, columns as types, rows as entries, a spreadsheet or lightweight database your workflows read, write, and operate on at scale. - [Table Operations](https://docs.sim.ai/academy/tables/operations) The Table block works across two surfaces, a panel where you describe the operation, and the live table that answers it, with one shape shared by query, insert, update, and delete. - [Workflow Columns](https://docs.sim.ai/academy/tables/workflow-columns) Attach a workflow to a table column and the table fills itself, and every value it writes carries the full trace of the run that produced it. - [Document Intake & Extraction](https://docs.sim.ai/academy/use-cases/document-extraction) A pipeline that takes incoming documents, extracts the fields you care about, and writes structured rows you can act on. - [Monitoring & Automated Research](https://docs.sim.ai/academy/use-cases/monitoring-research) A scheduled agent that watches sources you care about, researches what changed, and reports back, on its own. - [Sales Data Management & Enrichment](https://docs.sim.ai/academy/use-cases/sales-data-enrichment) A table-backed system that takes thin lead records, enriches them in parallel, scores them, and writes the results back. - [Slack IT Triage Bot](https://docs.sim.ai/academy/use-cases/slack-it-triage) An agent that watches a Slack channel, classifies incoming IT requests, answers what it can from your docs, and routes the rest. - [Connectors](https://docs.sim.ai/academy/knowledge-bases/connectors) A connector keeps a knowledge base in sync with the tool where your documents actually live, first import, steady re-sync, changes and removals included. - [Knowledge Bases](https://docs.sim.ai/academy/knowledge-bases/intro) Knowledge bases give your workflows searchable memory, large volumes of text an agent can search by meaning and use to ground its answers. - [Branching](https://docs.sim.ai/academy/workflows/branching) Split a workflow into different paths based on the result of a step: the Condition block decides with a rule, the Router lets a model decide. - [Deployment](https://docs.sim.ai/academy/workflows/deployment) Deploying gives a workflow an address so the outside world can run it: the same Start block answers calls as an API, a chat, or an MCP tool. - [Workflows](https://docs.sim.ai/academy/workflows/intro) A workflow is a visual program made of blocks: where you compose data, operations, integrations, and AI agents into a process. - [Logs](https://docs.sim.ai/academy/workflows/logs) A log is the complete record of one workflow run, and debugging is reading that record backwards, from a wrong value to the block that produced it. - [Loops & Parallel](https://docs.sim.ai/academy/workflows/loops) Repeat the same steps over a collection: the Loop block runs them one item at a time, the Parallel block runs every item at once. - [Subworkflows](https://docs.sim.ai/academy/workflows/subworkflows) Call one workflow from another, the way you'd call a function in code, reuse logic and compose small workflows into larger systems. ### Agents - [Choosing what to use](https://docs.sim.ai/agents/choosing) Pick between a deterministic block, an agent tool, a custom tool, an MCP server, a workflow-as-tool, and a skill. - [Custom Tools](https://docs.sim.ai/agents/custom-tools) Create your own tools with JavaScript code and use them in Agent blocks - [Overview](https://docs.sim.ai/agents) An agent is a workflow that reasons and acts, built around Agent blocks and the features you give them. - [Using MCP tools](https://docs.sim.ai/agents/mcp) Connect external tools and services using the Model Context Protocol - [Agent skills](https://docs.sim.ai/agents/skills) Reusable instruction packages your agents load on demand, managed from the Skills tab. ### Api Reference - [Authentication](https://docs.sim.ai/api-reference/authentication) API key types, generation, and how to authenticate requests - [Getting Started](https://docs.sim.ai/api-reference/getting-started) Base URL, first API call, response format, error handling, and pagination - [Python](https://docs.sim.ai/api-reference/python) - [TypeScript](https://docs.sim.ai/api-reference/typescript) - [Execute Workflow](https://docs.sim.ai/api-reference/workflows/executeWorkflow) Execute a deployed workflow. Supports synchronous, asynchronous, and streaming modes. For async execution, the response includes a statusUrl you can poll for results. - [Get Execution Status](https://docs.sim.ai/api-reference/workflows/getWorkflowExecution) Get the current status of a workflow execution. Returns the run's lifecycle state (`running`, `paused`, `completed`, `failed`, etc.), timing, error, and optionally per-block outputs. Designed for polling — works for any execution, including ones that pause and resume. - [Cancel Execution](https://docs.sim.ai/api-reference/workflows/cancelExecution) Cancel a running workflow execution. Only effective for executions that are still in progress. - [List Workflows](https://docs.sim.ai/api-reference/workflows/listWorkflows) Retrieve all workflows in a workspace with cursor-based pagination. - [Get Workflow](https://docs.sim.ai/api-reference/workflows/getWorkflow) Retrieve details for a single workflow, including its input fields and deployment status. - [Deploy Workflow](https://docs.sim.ai/api-reference/workflows/deployWorkflow) Deploy the workflow's current draft state. Creates a new deployment version, makes it live for API execution, and activates any schedules and triggers. Optionally accepts a name and description for the new version. Requires admin permission on the workflow's workspace. Returns 404 when the workflow does not exist or you do not have access to it. - [Undeploy Workflow](https://docs.sim.ai/api-reference/workflows/undeployWorkflow) Take the workflow offline. API execution stops and schedules, webhooks, and other deployment side effects are removed. Deployment versions are retained, so the workflow can be deployed again later. Requires admin permission on the workflow's workspace. Returns 404 when the workflow does not exist or you do not have access to it. - [Rollback Workflow](https://docs.sim.ai/api-reference/workflows/rollbackWorkflow) Roll the live deployment back to a previous deployment version. The workflow must currently be deployed. By default the version immediately preceding the currently active one is re-activated; pass `version` to target a specific deployment version instead. The workflow's draft state is not modified. Requires admin permission on the workflow's workspace. Returns 404 when the workflow does not exist or you do not have access to it. - [Get Job Status](https://docs.sim.ai/api-reference/workflows/getJobStatus) Poll the status of an asynchronous workflow execution. Use the jobId returned from the Execute Workflow endpoint when the execution is queued asynchronously. - [List Paused Executions](https://docs.sim.ai/api-reference/human-in-the-loop/listPausedExecutions) List all paused executions for a workflow. Workflows pause at Human in the Loop blocks and wait for input before continuing. Use this endpoint to discover which executions need attention. - [Get Paused Execution](https://docs.sim.ai/api-reference/human-in-the-loop/getPausedExecution) Get detailed information about a specific paused execution, including its pause points, execution snapshot, and resume queue. Use this to inspect the state before resuming. - [Get Paused Execution (Resume Path)](https://docs.sim.ai/api-reference/human-in-the-loop/getPausedExecutionByResumePath) Get detailed information about a specific paused execution using the resume URL path. Returns the same data as the workflow paused execution detail endpoint. - [Get Pause Context](https://docs.sim.ai/api-reference/human-in-the-loop/getPauseContext) Get detailed information about a specific pause context within a paused execution. Returns the pause point details, resume queue state, and any active resume entry. - [Resume Execution](https://docs.sim.ai/api-reference/human-in-the-loop/resumeExecution) Resume a paused workflow execution by providing input for a specific pause context. The execution continues from where it paused, using the provided input. Supports synchronous, asynchronous, and streaming modes (determined by the original execution's configuration). - [Query Logs](https://docs.sim.ai/api-reference/logs/queryLogs) List workflow execution logs with advanced filtering and cursor-based pagination. Supports filtering by workflow, trigger type, date range, duration, cost, and more. - [Get Log Details](https://docs.sim.ai/api-reference/logs/getLogDetails) Retrieve detailed information about a specific log entry, including workflow metadata, execution data, and cost breakdown. - [Get Execution Details](https://docs.sim.ai/api-reference/logs/getExecutionDetails) Retrieve the full execution state snapshot, including the workflow state at time of execution and detailed metadata. - [List Audit Logs](https://docs.sim.ai/api-reference/audit-logs/listAuditLogs) Retrieve audit logs for your organization with cursor-based pagination. Requires an Enterprise subscription and organization admin or owner role. - [Get Audit Log Details](https://docs.sim.ai/api-reference/audit-logs/getAuditLogDetails) Retrieve a single audit log entry by ID. Requires an Enterprise subscription and organization admin or owner role. - [Get Usage Limits](https://docs.sim.ai/api-reference/usage/getUsageLimits) Retrieve your current rate limits, usage spending, and storage consumption for the billing period. - [List Tables](https://docs.sim.ai/api-reference/tables/listTables) List all tables in a workspace. Returns table metadata including name, schema, and row counts. - [Create Table](https://docs.sim.ai/api-reference/tables/createTable) Create a new table in a workspace. Define the table schema with typed columns, optional constraints (required, unique), and a name. - [Get Table](https://docs.sim.ai/api-reference/tables/getTable) Retrieve a table's metadata, schema, and row count. - [Delete Table](https://docs.sim.ai/api-reference/tables/deleteTable) Delete a table and all its rows. This action is irreversible. - [Add Column](https://docs.sim.ai/api-reference/tables/addColumn) Add a new column to the table schema. Optionally specify a position to insert the column at a specific index. - [Update Column](https://docs.sim.ai/api-reference/tables/updateColumn) Update a column's name, type, or constraints. Multiple updates can be applied in a single request. When renaming, subsequent updates (type, constraints) use the new name. - [Delete Column](https://docs.sim.ai/api-reference/tables/deleteColumn) Delete a column from the table schema. This removes the column definition and strips the corresponding key from all existing row data. Cannot delete the last remaining column. - [List Rows](https://docs.sim.ai/api-reference/tables/listRows) Query rows from a table with optional filtering, sorting, and pagination. Filters and sorts are passed as JSON-encoded query parameters. - [Insert Rows](https://docs.sim.ai/api-reference/tables/insertRows) Insert one or more rows into a table. For a single row, pass a `data` object. For batch insert, pass a `rows` array (up to 1000 rows). - [Batch Update Rows](https://docs.sim.ai/api-reference/tables/batchUpdateRows) Update multiple specific rows by their IDs in a single request. Each entry in the `updates` array specifies a row ID and the fields to update. Validates against the table schema and unique constraints. Up to 1000 rows can be updated per request. - [Delete Rows](https://docs.sim.ai/api-reference/tables/deleteRows) Delete rows by filter criteria or by an explicit list of row IDs. Pass either a `filter` object or a `rowIds` array. - [Update Rows](https://docs.sim.ai/api-reference/tables/updateRows) Bulk update rows matching a filter. All matching rows will have the specified fields updated. Validates against schema and unique constraints. - [Get Row](https://docs.sim.ai/api-reference/tables/getRow) Retrieve a single row by its ID. - [Update Row](https://docs.sim.ai/api-reference/tables/updateRow) Partially update a single row. Only the provided fields are updated; existing fields are preserved. Data is validated against the table schema. - [Delete Row](https://docs.sim.ai/api-reference/tables/deleteRow) Delete a single row by its ID. - [Upsert Row](https://docs.sim.ai/api-reference/tables/upsertRow) Insert a new row or update an existing one based on a unique column value. The table must have at least one column with a unique constraint. If a row with a matching unique value exists, it is updated; otherwise, a new row is inserted. When multiple unique columns exist, specify `conflictTarget` to indicate which column to match on. - [List Files](https://docs.sim.ai/api-reference/files/listFiles) List all files in a workspace. - [Upload File](https://docs.sim.ai/api-reference/files/uploadFile) Upload a file to a workspace. Send the file as multipart/form-data with a `file` field and a `workspaceId` field. Maximum file size is 100MB. Duplicate filenames within a workspace are not allowed. - [Download File](https://docs.sim.ai/api-reference/files/downloadFile) Download a file's content. Returns the raw file bytes with appropriate Content-Type, Content-Disposition, and Content-Length headers. File metadata is included in custom response headers: X-File-Id, X-File-Name, X-Uploaded-At. - [Delete File](https://docs.sim.ai/api-reference/files/deleteFile) Delete a file from a workspace. This removes both the file content and its metadata. This action is irreversible. - [List Knowledge Bases](https://docs.sim.ai/api-reference/knowledge-bases/listKnowledgeBases) List all knowledge bases in a workspace. - [Create Knowledge Base](https://docs.sim.ai/api-reference/knowledge-bases/createKnowledgeBase) Create a new knowledge base in a workspace. Optionally configure chunking parameters for document processing. - [Get Knowledge Base](https://docs.sim.ai/api-reference/knowledge-bases/getKnowledgeBase) Get details of a specific knowledge base. - [Delete Knowledge Base](https://docs.sim.ai/api-reference/knowledge-bases/deleteKnowledgeBase) Soft-delete a knowledge base and all its documents. - [Update Knowledge Base](https://docs.sim.ai/api-reference/knowledge-bases/updateKnowledgeBase) Update a knowledge base's name, description, or chunking configuration. At least one field must be provided. - [List Documents](https://docs.sim.ai/api-reference/knowledge-bases/listDocuments) List documents in a knowledge base with pagination, filtering, and sorting. - [Upload Document](https://docs.sim.ai/api-reference/knowledge-bases/uploadDocument) Upload a document to a knowledge base. The document will be processed asynchronously (chunked and embedded). Maximum file size is 100MB. - [Get Document](https://docs.sim.ai/api-reference/knowledge-bases/getDocument) Get details of a specific document in a knowledge base. - [Delete Document](https://docs.sim.ai/api-reference/knowledge-bases/deleteDocument) Soft-delete a document from a knowledge base. For connector-sourced documents, this also prevents re-import on future syncs. - [Search Knowledge Base](https://docs.sim.ai/api-reference/knowledge-bases/searchKnowledgeBase) Perform vector similarity search across one or more knowledge bases. Supports semantic search via query text, tag-based filtering, or a combination of both. ### Files - [Editor](https://docs.sim.ai/files/editor) A rich markdown editor for your files — type markdown and watch it render, or edit visually. - [Generating files](https://docs.sim.ai/files/generating) How a workflow produces a document, report, or media file and saves it to the workspace Files store. - [Overview](https://docs.sim.ai/files) Files are the documents, images, spreadsheets, and PDFs your workflows read and produce. - [Passing files](https://docs.sim.ai/files/passing-files) How file objects move between blocks, into workflows via the API, and back out in responses. - [Using files in workflows](https://docs.sim.ai/files/using-in-workflows) Read a file's contents in a workflow, pass a file to a block that needs one, or save a new file from a run. ### Getting Started - [Getting Started](https://docs.sim.ai/getting-started) Build your first agent in 10 minutes — a people researcher with web search tools and structured output. ### Introduction - [Introduction](https://docs.sim.ai/introduction) Sim is the open-source AI workspace where teams build, deploy, and manage AI agents. ### Keyboard Shortcuts - [Keyboard Shortcuts](https://docs.sim.ai/keyboard-shortcuts) Keyboard and mouse shortcuts for the workflow editor and for tables. ### Knowledgebase - [Chunking strategies](https://docs.sim.ai/knowledgebase/chunking-strategies) The chunking settings and strategies, for the rare case you need to override Auto. - [Connectors](https://docs.sim.ai/knowledgebase/connectors) Automatically sync documents from external sources into your knowledge base - [Debugging retrieval](https://docs.sim.ai/knowledgebase/debugging-retrieval) Why a Knowledge block search returns no results, wrong results, or duplicates, and how to fix each one. - [Overview](https://docs.sim.ai/knowledgebase) A store of documents your agents can search by meaning. - [Tags and filtering](https://docs.sim.ai/knowledgebase/tags) - [Using a knowledge base in a workflow](https://docs.sim.ai/knowledgebase/using-in-workflows) How the Knowledge block searches a knowledge base and what it returns, so an agent can ground its answers in your documents. ### Logs Debugging - [Alerts](https://docs.sim.ai/logs-debugging/alerts) Get notified when a workflow fails, slows down, costs too much, or goes quiet. - [Overview](https://docs.sim.ai/logs-debugging) A log is the recorded trace of one workflow run, and debugging is reading that trace backward from the block that failed. - [Logging](https://docs.sim.ai/logs-debugging/logging) Where run logs live — the real-time console, the Logs page, and what each entry records. ### Mothership - [Files & documents](https://docs.sim.ai/mothership/files) Upload, create, edit, and generate files — documents, presentations, images, and more. - [Building with Mothership](https://docs.sim.ai/mothership) Your AI command center. Build and manage your entire workspace in natural language. - [Knowledge bases](https://docs.sim.ai/mothership/knowledge) Create, populate, and query knowledge bases from Mothership. - [Sim Mailer](https://docs.sim.ai/mothership/mailer) Send emails to your workspace and let Sim handle them as tasks. - [Research](https://docs.sim.ai/mothership/research) Ask Mothership to research anything — it searches, reads, and synthesizes from the web. - [Tables](https://docs.sim.ai/mothership/tables) Create, query, and manage workspace tables from Mothership. - [Automation & configuration](https://docs.sim.ai/mothership/tasks) Schedule recurring jobs, take immediate actions, connect integrations, and configure your workspace. - [Workflows](https://docs.sim.ai/mothership/workflows) Create, edit, run, debug, deploy, and organize workflows from Mothership. ### Platform - [Cost calculation](https://docs.sim.ai/platform/costs) - [Secrets](https://docs.sim.ai/platform/credentials) Manage API keys and environment variables for your workflows - [Organizing a workspace](https://docs.sim.ai/platform/organization) Folders, colors, and naming conventions for keeping a growing workspace understandable. - [Roles and permissions](https://docs.sim.ai/platform/permissions) How organization, workspace, and credential roles work together — and how they inherit. - [Workspace fundamentals](https://docs.sim.ai/platform/workspaces) A workspace holds your workflows and resources and decides who can access them. - [Access Control](https://docs.sim.ai/platform/enterprise/access-control) Restrict which models, blocks, and platform features each group of users can access - [Audit Logs](https://docs.sim.ai/platform/enterprise/audit-logs) Track every action taken across your organization's workspaces - [Custom Blocks](https://docs.sim.ai/platform/enterprise/custom-blocks) Publish a deployed workflow as a reusable block for your organization - [Data Drains](https://docs.sim.ai/platform/enterprise/data-drains) Continuously export workflow logs, audit logs, and Mothership data to your own object store, data warehouse, observability platform, or HTTPS endpoint on a schedule - [Data Retention](https://docs.sim.ai/platform/enterprise/data-retention) Control how long execution logs, deleted resources, and copilot data are kept before permanent deletion - [Workspace Forks](https://docs.sim.ai/platform/enterprise/forks) Clone a workspace, keep it linked to its parent, and push or pull deployed workflow changes - [Enterprise](https://docs.sim.ai/platform/enterprise) Enterprise features for business organizations - [Single Sign-On (SSO)](https://docs.sim.ai/platform/enterprise/sso) Configure SAML 2.0 or OIDC-based single sign-on for your organization - [Whitelabeling](https://docs.sim.ai/platform/enterprise/whitelabeling) Replace Sim branding with your own logo, colors, and links - [Docker](https://docs.sim.ai/platform/self-hosting/docker) Deploy Sim with Docker Compose - [Environment Variables](https://docs.sim.ai/platform/self-hosting/environment-variables) Configuration reference for Sim - [Self-Hosting](https://docs.sim.ai/platform/self-hosting) Deploy Sim on your own infrastructure - [Kubernetes](https://docs.sim.ai/platform/self-hosting/kubernetes) Deploy Sim with Helm - [Object Storage](https://docs.sim.ai/platform/self-hosting/object-storage) Configure where Sim stores uploaded files — local disk, AWS S3, Azure Blob, or Google Cloud Storage - [Cloud Platforms](https://docs.sim.ai/platform/self-hosting/platforms) Deploy Sim on cloud platforms - [Troubleshooting](https://docs.sim.ai/platform/self-hosting/troubleshooting) Common issues and solutions ### Quick Reference - [Quick Reference](https://docs.sim.ai/quick-reference) Essential actions for navigating and using the Sim workflow editor ### Integrations - [A2A](https://docs.sim.ai/integrations/a2a) Interact with external A2A-compatible agents - [AgentMail](https://docs.sim.ai/integrations/agentmail) Manage email inboxes, threads, and messages with AgentMail - [AgentPhone](https://docs.sim.ai/integrations/agentphone) Provision numbers, send SMS and iMessage, and place voice calls with AgentPhone - [Agiloft](https://docs.sim.ai/integrations/agiloft) Manage records in Agiloft CLM - [Ahrefs](https://docs.sim.ai/integrations/ahrefs) SEO analysis with Ahrefs - [Airtable Personal Access Tokens](https://docs.sim.ai/integrations/airtable-service-account) Set up an Airtable personal access token with scoped base access to use Airtable in Sim workflows - [Airtable](https://docs.sim.ai/integrations/airtable) Read, create, and update Airtable - [Airweave](https://docs.sim.ai/integrations/airweave) Search your synced data collections - [Algolia](https://docs.sim.ai/integrations/algolia) Search and manage Algolia indices - [Amplitude](https://docs.sim.ai/integrations/amplitude) Track events and query analytics from Amplitude - [Apify](https://docs.sim.ai/integrations/apify) Run Apify actors and retrieve results - [Apollo](https://docs.sim.ai/integrations/apollo) Search, enrich, and manage contacts with Apollo.io - [AWS AppConfig](https://docs.sim.ai/integrations/appconfig) Manage and retrieve configuration with AWS AppConfig - [ArXiv](https://docs.sim.ai/integrations/arxiv) Search and retrieve academic papers from ArXiv - [Asana Service Accounts & Personal Access Tokens](https://docs.sim.ai/integrations/asana-service-account) Connect Asana to Sim with a service account token or a personal access token from a dedicated bot account - [Asana](https://docs.sim.ai/integrations/asana) Interact with Asana - [Ashby](https://docs.sim.ai/integrations/ashby) Manage candidates, jobs, and applications in Ashby - [Athena](https://docs.sim.ai/integrations/athena) Run SQL queries on data in Amazon S3 using AWS Athena - [Atlassian Service Accounts](https://docs.sim.ai/integrations/atlassian-service-account) Set up an Atlassian service account with a scoped API token to use Jira and Confluence in Sim workflows - [Attio API Keys](https://docs.sim.ai/integrations/attio-service-account) Connect Attio to Sim with a workspace API key — a workspace-level, non-expiring access token with admin-chosen scopes - [Attio](https://docs.sim.ai/integrations/attio) Manage records, notes, tasks, lists, comments, and more in Attio CRM - [Azure DevOps](https://docs.sim.ai/integrations/azure_devops) Interact with Azure DevOps pipelines, builds, and work items - [Box Service Accounts](https://docs.sim.ai/integrations/box-service-account) Set up a Box Platform app with Client Credentials Grant so your workflows can use Box through its Service Account - [Box](https://docs.sim.ai/integrations/box) Manage files, folders, and e-signatures with Box - [Brandfetch](https://docs.sim.ai/integrations/brandfetch) Look up brand assets, logos, colors, and company info - [Brex](https://docs.sim.ai/integrations/brex) Manage expenses, receipts, transactions, and team data in Brex - [Bright Data](https://docs.sim.ai/integrations/brightdata) Scrape websites, search engines, and extract structured data - [Browser Use](https://docs.sim.ai/integrations/browser_use) Run browser automation tasks - [Buffer](https://docs.sim.ai/integrations/buffer) Schedule and publish social media posts across connected channels - [Cal.com API Keys](https://docs.sim.ai/integrations/calcom-service-account) Set up a Cal.com API key to use Cal.com in Sim workflows without OAuth - [Cal.com](https://docs.sim.ai/integrations/calcom) Manage Cal.com bookings, event types, schedules, and availability - [Calendly](https://docs.sim.ai/integrations/calendly) Manage Calendly scheduling and events - [Circleback](https://docs.sim.ai/integrations/circleback) Circleback triggers for automating workflows - [Clay](https://docs.sim.ai/integrations/clay) Populate Clay workbook - [Clerk](https://docs.sim.ai/integrations/clerk) Manage users, organizations, and sessions in Clerk - [ClickHouse](https://docs.sim.ai/integrations/clickhouse) Connect to a ClickHouse database - [ClickUp API Tokens](https://docs.sim.ai/integrations/clickup-service-account) Connect ClickUp to Sim with a personal API token — ideally created from a dedicated service user for production workflows - [ClickUp](https://docs.sim.ai/integrations/clickup) Interact with ClickUp - [Cloudflare](https://docs.sim.ai/integrations/cloudflare) Manage DNS, domains, certificates, and cache - [CloudFormation](https://docs.sim.ai/integrations/cloudformation) Manage and inspect AWS CloudFormation stacks, resources, and drift - [CloudWatch](https://docs.sim.ai/integrations/cloudwatch) Query and monitor AWS CloudWatch logs, metrics, and alarms - [CodePipeline](https://docs.sim.ai/integrations/codepipeline) Run, monitor, and approve AWS CodePipeline pipelines - [Confluence](https://docs.sim.ai/integrations/confluence) Interact with Confluence - [Context.dev](https://docs.sim.ai/integrations/context_dev) Scrape, crawl, search, extract, and enrich web and brand data - [Convex](https://docs.sim.ai/integrations/convex) Use Convex database - [CrowdStrike](https://docs.sim.ai/integrations/crowdstrike) Query CrowdStrike Identity Protection sensors and documented aggregates - [Cursor](https://docs.sim.ai/integrations/cursor) Launch and manage Cursor cloud agents to work on GitHub repositories - [Dagster](https://docs.sim.ai/integrations/dagster) Orchestrate data pipelines and manage job runs with Dagster - [Databricks](https://docs.sim.ai/integrations/databricks) Run SQL queries and manage jobs on Databricks - [Datadog](https://docs.sim.ai/integrations/datadog) Monitor infrastructure, applications, and logs with Datadog - [Datagma](https://docs.sim.ai/integrations/datagma) Find verified B2B emails, mobile phones, and enrich person or company profiles - [Daytona](https://docs.sim.ai/integrations/daytona) Run code and commands in secure cloud sandboxes - [Deployments](https://docs.sim.ai/integrations/deployments) Manage workflow deployments - [Devin](https://docs.sim.ai/integrations/devin) Autonomous AI software engineer - [Discord](https://docs.sim.ai/integrations/discord) Interact with Discord - [DocuSign](https://docs.sim.ai/integrations/docusign) Send documents for e-signature via DocuSign - [Downdetector](https://docs.sim.ai/integrations/downdetector) Monitor outages and service status with Downdetector - [Dropbox](https://docs.sim.ai/integrations/dropbox) Upload, download, share, and manage files in Dropbox - [Dropcontact](https://docs.sim.ai/integrations/dropcontact) Enrich B2B contacts with verified email, phone, and company data - [DSPy](https://docs.sim.ai/integrations/dspy) Run predictions using self-hosted DSPy programs - [Dub](https://docs.sim.ai/integrations/dub) Link management with Dub - [DuckDuckGo](https://docs.sim.ai/integrations/duckduckgo) Search with DuckDuckGo - [Amazon DynamoDB](https://docs.sim.ai/integrations/dynamodb) Get, put, query, scan, update, and delete items in Amazon DynamoDB tables - [Elasticsearch](https://docs.sim.ai/integrations/elasticsearch) Search, index, and manage data in Elasticsearch - [ElevenLabs](https://docs.sim.ai/integrations/elevenlabs) Generate and transform audio with ElevenLabs - [Email Bison](https://docs.sim.ai/integrations/emailbison) Manage Email Bison leads, campaigns, replies, and tags - [Enrich](https://docs.sim.ai/integrations/enrich) B2B data enrichment and LinkedIn intelligence with Enrich.so - [Data Enrichment](https://docs.sim.ai/integrations/enrichment) Enrich data with a Sim enrichment - [Enrow](https://docs.sim.ai/integrations/enrow) Find and verify B2B emails with triple-verified accuracy - [Evernote](https://docs.sim.ai/integrations/evernote) Manage notes, notebooks, and tags in Evernote - [Exa](https://docs.sim.ai/integrations/exa) Search with Exa AI - [Extend](https://docs.sim.ai/integrations/extend) Parse and extract content from documents - [Fathom](https://docs.sim.ai/integrations/fathom) Access meeting recordings, transcripts, and summaries - [File](https://docs.sim.ai/integrations/file) Read, get content, fetch, write, append, compress, decompress, and manage sharing for files - [Findymail](https://docs.sim.ai/integrations/findymail) Find and verify B2B emails, phones, employees, and company data - [Firecrawl](https://docs.sim.ai/integrations/firecrawl) Scrape, search, crawl, map, and extract web data - [Fireflies](https://docs.sim.ai/integrations/fireflies) Interact with Fireflies.ai meeting transcripts and recordings - [Flint](https://docs.sim.ai/integrations/flint) Run background agent tasks on your Flint sites - [Gamma](https://docs.sim.ai/integrations/gamma) Generate presentations, documents, and webpages with AI - [GitHub](https://docs.sim.ai/integrations/github) Interact with GitHub or trigger workflows from GitHub events - [GitLab](https://docs.sim.ai/integrations/gitlab) Interact with GitLab projects, issues, merge requests, and pipelines - [Gmail](https://docs.sim.ai/integrations/gmail) Send, read, search, and move Gmail messages or trigger workflows from Gmail events - [Gong](https://docs.sim.ai/integrations/gong) Revenue intelligence and conversation analytics - [Google Service Accounts](https://docs.sim.ai/integrations/google-service-account) Set up Google service accounts with domain-wide delegation for Gmail, Sheets, Drive, Calendar, and other Google services - [Google Ads](https://docs.sim.ai/integrations/google_ads) Query campaigns, ad groups, and performance metrics - [Google AppSheet](https://docs.sim.ai/integrations/google_appsheet) Read, add, edit, and delete rows in a Google AppSheet table - [Google BigQuery](https://docs.sim.ai/integrations/google_bigquery) Query, list, and insert data in Google BigQuery - [Google Books](https://docs.sim.ai/integrations/google_books) Search and retrieve book information - [Google Calendar](https://docs.sim.ai/integrations/google_calendar) Manage Google Calendar events - [Google Contacts](https://docs.sim.ai/integrations/google_contacts) Manage Google Contacts - [Google Docs](https://docs.sim.ai/integrations/google_docs) Read, write, create, and edit documents - [Google Drive](https://docs.sim.ai/integrations/google_drive) Manage files, folders, and permissions - [Google Forms](https://docs.sim.ai/integrations/google_forms) Manage Google Forms and responses - [Google Groups](https://docs.sim.ai/integrations/google_groups) Manage Google Workspace Groups and their members - [Google Maps](https://docs.sim.ai/integrations/google_maps) Geocoding, directions, places, and distance calculations - [Google Meet](https://docs.sim.ai/integrations/google_meet) Create and manage Google Meet meetings - [Google PageSpeed](https://docs.sim.ai/integrations/google_pagespeed) Analyze webpage performance with Google PageSpeed Insights - [Google Search](https://docs.sim.ai/integrations/google_search) Search the web - [Google Sheets](https://docs.sim.ai/integrations/google_sheets) Read, write, and update data with sheet selection - [Google Slides](https://docs.sim.ai/integrations/google_slides) Read, write, and create presentations - [Google Tasks](https://docs.sim.ai/integrations/google_tasks) Manage Google Tasks - [Google Translate](https://docs.sim.ai/integrations/google_translate) Translate text using Google Cloud Translation - [Google Vault](https://docs.sim.ai/integrations/google_vault) Search, export, and manage matters, holds, exports, and saved queries in Vault - [Grafana](https://docs.sim.ai/integrations/grafana) Interact with Grafana dashboards, alerts, and annotations - [Grain](https://docs.sim.ai/integrations/grain) Access meeting recordings, transcripts, and AI summaries - [Granola](https://docs.sim.ai/integrations/granola) Access meeting notes and transcripts from Granola - [Greenhouse](https://docs.sim.ai/integrations/greenhouse) Manage candidates, jobs, and applications in Greenhouse - [Greptile](https://docs.sim.ai/integrations/greptile) AI-powered codebase search and Q&A - [Hex](https://docs.sim.ai/integrations/hex) Run and manage Hex projects - [HubSpot Private App Tokens](https://docs.sim.ai/integrations/hubspot-service-account) Set up a HubSpot private app with a scoped access token to use HubSpot in Sim workflows - [HubSpot setup guide](https://docs.sim.ai/integrations/hubspot-setup) Install, configure, use, and disconnect the Sim HubSpot integration. - [HubSpot](https://docs.sim.ai/integrations/hubspot) Interact with HubSpot CRM or trigger workflows from HubSpot events - [Hugging Face](https://docs.sim.ai/integrations/huggingface) Use Hugging Face Inference API - [Hunter.io](https://docs.sim.ai/integrations/hunter) Find and verify professional email addresses - [AWS IAM](https://docs.sim.ai/integrations/iam) Manage AWS IAM users, roles, policies, and groups - [Icypeas](https://docs.sim.ai/integrations/icypeas) Find and verify professional email addresses - [AWS Identity Center](https://docs.sim.ai/integrations/identity_center) Manage temporary elevated access in AWS IAM Identity Center - [IMAP](https://docs.sim.ai/integrations/imap) IMAP triggers for automating workflows - [incident.io](https://docs.sim.ai/integrations/incidentio) Manage incidents with incident.io - [Integrations](https://docs.sim.ai/integrations) Connect third-party services and OAuth accounts for your workflows - [Infisical](https://docs.sim.ai/integrations/infisical) Manage secrets with Infisical - [Instantly](https://docs.sim.ai/integrations/instantly) Manage Instantly leads, campaigns, emails, and lead lists - [Intercom](https://docs.sim.ai/integrations/intercom) Manage contacts, companies, conversations, tickets, and messages in Intercom - [Jina](https://docs.sim.ai/integrations/jina) Search the web or extract content from URLs - [Jira](https://docs.sim.ai/integrations/jira) Interact with Jira - [Jira Service Management](https://docs.sim.ai/integrations/jira_service_management) Interact with Jira Service Management - [Jupyter](https://docs.sim.ai/integrations/jupyter) Manage files, notebooks, kernels, and sessions on a Jupyter server - [Kalshi](https://docs.sim.ai/integrations/kalshi) Access prediction markets and trade on Kalshi - [Ketch](https://docs.sim.ai/integrations/ketch) Manage privacy consent, subscriptions, and data subject rights - [Knowledge](https://docs.sim.ai/integrations/knowledge) Use vector search - [LangSmith](https://docs.sim.ai/integrations/langsmith) Forward workflow runs to LangSmith for observability - [LaTeX](https://docs.sim.ai/integrations/latex) Compile LaTeX documents into PDFs - [LaunchDarkly](https://docs.sim.ai/integrations/launchdarkly) Manage feature flags with LaunchDarkly. - [LeadMagic](https://docs.sim.ai/integrations/leadmagic) Find and enrich B2B contacts, emails, mobile numbers, and company data - [Lemlist](https://docs.sim.ai/integrations/lemlist) Manage outreach activities, leads, and send emails via Lemlist - [Linear API Keys](https://docs.sim.ai/integrations/linear-service-account) Connect Linear to Sim with a personal API key — ideally created from a dedicated service user for production workflows - [Linear](https://docs.sim.ai/integrations/linear) Interact with Linear issues, projects, and more - [LinkedIn](https://docs.sim.ai/integrations/linkedin) Share posts and manage your LinkedIn presence - [Linkup](https://docs.sim.ai/integrations/linkup) Search the web with Linkup - [Linq](https://docs.sim.ai/integrations/linq) Send iMessage, SMS, and RCS messages and manage conversations with Linq - [Logs](https://docs.sim.ai/integrations/logs) Query workflow runs and fetch run details - [Loops](https://docs.sim.ai/integrations/loops) Manage contacts and send emails with Loops - [Luma](https://docs.sim.ai/integrations/luma) Manage events and guests on Luma - [Mailchimp](https://docs.sim.ai/integrations/mailchimp) Manage audiences, campaigns, and marketing automation in Mailchimp - [Mailgun](https://docs.sim.ai/integrations/mailgun) Send emails and manage mailing lists with Mailgun - [Mem0](https://docs.sim.ai/integrations/mem0) Agent memory management - [Memory](https://docs.sim.ai/integrations/memory) Add memory store - [Azure AD](https://docs.sim.ai/integrations/microsoft_ad) Manage users and groups in Azure AD (Microsoft Entra ID) - [Microsoft Dataverse](https://docs.sim.ai/integrations/microsoft_dataverse) Manage records in Microsoft Dataverse tables - [Microsoft Excel](https://docs.sim.ai/integrations/microsoft_excel) Read and write data with sheet selection - [Microsoft Planner](https://docs.sim.ai/integrations/microsoft_planner) Manage tasks, plans, and buckets in Microsoft Planner - [Microsoft Teams](https://docs.sim.ai/integrations/microsoft_teams) Manage messages, reactions, and members in Teams - [MillionVerifier](https://docs.sim.ai/integrations/millionverifier) Verify email deliverability and check account credits - [Mistral Parser](https://docs.sim.ai/integrations/mistral_parse) Extract text from PDF documents - [monday.com API Tokens](https://docs.sim.ai/integrations/monday-service-account) Set up a monday.com personal API token on a dedicated integration user to use monday.com in Sim workflows - [Monday](https://docs.sim.ai/integrations/monday) Manage Monday.com boards, items, and groups - [MongoDB](https://docs.sim.ai/integrations/mongodb) Connect to MongoDB database - [MySQL](https://docs.sim.ai/integrations/mysql) Connect to MySQL database - [Neo4j](https://docs.sim.ai/integrations/neo4j) Connect to Neo4j graph database - [NeverBounce](https://docs.sim.ai/integrations/neverbounce) Verify email deliverability and check account credits - [New Relic](https://docs.sim.ai/integrations/new_relic) Query observability data and record deployments in New Relic - [Notion Internal Integrations](https://docs.sim.ai/integrations/notion-service-account) Set up a Notion internal integration with an integration secret to use Notion in Sim workflows - [Notion](https://docs.sim.ai/integrations/notion) Manage Notion pages - [Obsidian](https://docs.sim.ai/integrations/obsidian) Interact with your Obsidian vault via the Local REST API - [Okta](https://docs.sim.ai/integrations/okta) Manage users and groups in Okta - [OneDrive](https://docs.sim.ai/integrations/onedrive) Create, upload, download, search, move, copy, share, and delete files - [1Password](https://docs.sim.ai/integrations/onepassword) Manage secrets and items in 1Password vaults - [Embeddings](https://docs.sim.ai/integrations/openai) Generate Open AI embeddings - [Outlook](https://docs.sim.ai/integrations/outlook) Send, read, search, reply, organize, and manage Outlook email - [PagerDuty](https://docs.sim.ai/integrations/pagerduty) Manage incidents and on-call schedules with PagerDuty - [Parallel AI](https://docs.sim.ai/integrations/parallel_ai) Web research with Parallel AI - [People Data Labs](https://docs.sim.ai/integrations/peopledatalabs) Enrich and search people and companies - [Perplexity](https://docs.sim.ai/integrations/perplexity) Use Perplexity AI for chat and search - [Persona](https://docs.sim.ai/integrations/persona) Verify identities with Persona - [Pinecone](https://docs.sim.ai/integrations/pinecone) Use Pinecone vector database - [Pipedrive API Tokens](https://docs.sim.ai/integrations/pipedrive-service-account) Connect Pipedrive to Sim with a personal API token instead of an OAuth login - [Pipedrive](https://docs.sim.ai/integrations/pipedrive) Interact with Pipedrive CRM - [Polymarket](https://docs.sim.ai/integrations/polymarket) Access prediction markets data from Polymarket - [PostgreSQL](https://docs.sim.ai/integrations/postgresql) Connect to PostgreSQL database - [PostHog](https://docs.sim.ai/integrations/posthog) Product analytics and feature management - [Profound](https://docs.sim.ai/integrations/profound) AI visibility and analytics with Profound - [Prospeo](https://docs.sim.ai/integrations/prospeo) Enrich and search B2B contacts and companies - [Pulse](https://docs.sim.ai/integrations/pulse) Extract text from documents using Pulse OCR - [Qdrant](https://docs.sim.ai/integrations/qdrant) Use Qdrant vector database - [Quartr](https://docs.sim.ai/integrations/quartr) Access earnings calls, transcripts, filings, and slides - [Quiver](https://docs.sim.ai/integrations/quiver) Generate and vectorize SVGs - [Railway](https://docs.sim.ai/integrations/railway) Manage Railway projects, services, deployments, and variables - [RB2B](https://docs.sim.ai/integrations/rb2b) Identify and enrich website visitors - [Amazon RDS](https://docs.sim.ai/integrations/rds) Connect to Amazon RDS via Data API - [Reddit](https://docs.sim.ai/integrations/reddit) Access Reddit data and content - [Redis](https://docs.sim.ai/integrations/redis) Key-value operations with Redis - [Reducto](https://docs.sim.ai/integrations/reducto) Extract text from PDF documents - [Resend](https://docs.sim.ai/integrations/resend) Send emails and manage contacts with Resend. - [RevenueCat](https://docs.sim.ai/integrations/revenuecat) Manage in-app subscriptions and entitlements - [Rippling](https://docs.sim.ai/integrations/rippling) Manage workers, departments, custom objects, and company data in Rippling - [Rocketlane](https://docs.sim.ai/integrations/rocketlane) Manage client onboarding projects, tasks, time tracking, and invoices - [Rootly](https://docs.sim.ai/integrations/rootly) Manage incidents, alerts, and on-call with Rootly - [S3](https://docs.sim.ai/integrations/s3) Upload, download, list, and manage S3 files and buckets - [Salesforce Integration Users](https://docs.sim.ai/integrations/salesforce-service-account) Set up a Salesforce External Client App with the Client Credentials Flow and a dedicated integration user to use Salesforce in Sim workflows - [Salesforce](https://docs.sim.ai/integrations/salesforce) Interact with Salesforce CRM - [SAP Concur](https://docs.sim.ai/integrations/sap_concur) Manage expense reports, travel requests, cash advances, and more in SAP Concur - [SAP S4HANA](https://docs.sim.ai/integrations/sap_s4hana) Read and write SAP S4HANA Cloud business data via OData - [AWS Secrets Manager](https://docs.sim.ai/integrations/secrets_manager) Connect to AWS Secrets Manager - [Sendblue](https://docs.sim.ai/integrations/sendblue) Send and receive iMessage and SMS - [SendGrid](https://docs.sim.ai/integrations/sendgrid) Send emails and manage contacts, lists, and templates with SendGrid - [Sentry](https://docs.sim.ai/integrations/sentry) Manage Sentry issues, projects, events, and releases - [Serper](https://docs.sim.ai/integrations/serper) Search the web using Serper - [ServiceNow](https://docs.sim.ai/integrations/servicenow) Create, read, update, and delete ServiceNow records - [AWS SES](https://docs.sim.ai/integrations/ses) Send emails and manage templates with AWS Simple Email Service - [SFTP](https://docs.sim.ai/integrations/sftp) Transfer files via SFTP (SSH File Transfer Protocol) - [SharePoint](https://docs.sim.ai/integrations/sharepoint) Work with pages and lists - [Shopify Admin API Tokens](https://docs.sim.ai/integrations/shopify-service-account) Set up a Shopify custom app with an Admin API access token to use Shopify in Sim workflows - [Shopify](https://docs.sim.ai/integrations/shopify) Manage products, orders, customers, and inventory in your Shopify store - [Similarweb](https://docs.sim.ai/integrations/similarweb) Website traffic and analytics data - [Sixtyfour AI](https://docs.sim.ai/integrations/sixtyfour) Enrich leads and companies with AI-powered research - [Slack](https://docs.sim.ai/integrations/slack) Send, update, delete messages, manage views and modals, add or remove reactions, manage canvases, get channel info and user presence in Slack - [SMTP](https://docs.sim.ai/integrations/smtp) Send emails via any SMTP mail server - [Sportmonks](https://docs.sim.ai/integrations/sportmonks) Access Sportmonks football, motorsport, odds, and reference data - [Amazon SQS](https://docs.sim.ai/integrations/sqs) Connect to Amazon SQS - [Square](https://docs.sim.ai/integrations/square) Process payments and manage Square commerce data - [SSH](https://docs.sim.ai/integrations/ssh) Connect to remote servers via SSH - [Stagehand](https://docs.sim.ai/integrations/stagehand) Web automation and data extraction - [Stripe](https://docs.sim.ai/integrations/stripe) Process payments and manage Stripe data - [AWS STS](https://docs.sim.ai/integrations/sts) Connect to AWS Security Token Service - [Supabase](https://docs.sim.ai/integrations/supabase) Use Supabase database - [Table](https://docs.sim.ai/integrations/table) User-defined data tables - [Tailscale](https://docs.sim.ai/integrations/tailscale) Manage devices and network settings in your Tailscale tailnet - [Tavily](https://docs.sim.ai/integrations/tavily) Search and extract information - [Telegram](https://docs.sim.ai/integrations/telegram) Interact with Telegram - [Temporal](https://docs.sim.ai/integrations/temporal) Start, signal, query, and manage Temporal workflow executions - [AWS Textract](https://docs.sim.ai/integrations/textract) Extract text, tables, and forms from documents - [Thrive](https://docs.sim.ai/integrations/thrive) Manage users, audiences, learning and CPD on Thrive - [Tinybird](https://docs.sim.ai/integrations/tinybird) Send events, query data, and manage Data Sources with Tinybird - [Trello API Tokens](https://docs.sim.ai/integrations/trello-service-account) Mint a Trello API token bound to Sim's API key to use Trello in Sim workflows without OAuth - [Trello](https://docs.sim.ai/integrations/trello) Manage Trello lists, cards, checklists, and activity - [Trigger.dev](https://docs.sim.ai/integrations/trigger_dev) Trigger tasks and manage runs and schedules - [Twilio](https://docs.sim.ai/integrations/twilio) Twilio triggers for automating workflows - [Twilio SMS](https://docs.sim.ai/integrations/twilio_sms) Send SMS messages - [Twilio Voice](https://docs.sim.ai/integrations/twilio_voice) Make and manage phone calls - [Typeform](https://docs.sim.ai/integrations/typeform) Interact with Typeform - [Upstash](https://docs.sim.ai/integrations/upstash) Serverless Redis with Upstash - [UptimeRobot](https://docs.sim.ai/integrations/uptimerobot) Monitor uptime, manage incidents, maintenance windows, and status pages - [Vanta](https://docs.sim.ai/integrations/vanta) Query compliance status and manage evidence in Vanta - [Vercel](https://docs.sim.ai/integrations/vercel) Manage Vercel deployments, projects, and infrastructure - [Wealthbox API Access Tokens](https://docs.sim.ai/integrations/wealthbox-service-account) Set up a Wealthbox API access token to use Wealthbox in Sim workflows without OAuth - [Wealthbox](https://docs.sim.ai/integrations/wealthbox) Interact with Wealthbox - [Webflow Site Tokens](https://docs.sim.ai/integrations/webflow-service-account) Set up a Webflow site API token with the right scopes to use Webflow CMS in Sim workflows - [Webflow](https://docs.sim.ai/integrations/webflow) Manage Webflow CMS collections - [WhatsApp](https://docs.sim.ai/integrations/whatsapp) Send WhatsApp messages - [Wikipedia](https://docs.sim.ai/integrations/wikipedia) Search and retrieve content from Wikipedia - [Wiza](https://docs.sim.ai/integrations/wiza) Find, enrich, and verify B2B contact data with Wiza - [WordPress](https://docs.sim.ai/integrations/wordpress) Manage WordPress content - [Workday](https://docs.sim.ai/integrations/workday) Manage workers, hiring, onboarding, and HR operations in Workday - [X](https://docs.sim.ai/integrations/x) Interact with X - [YouTube](https://docs.sim.ai/integrations/youtube) Interact with YouTube videos, channels, and playlists - [Zendesk](https://docs.sim.ai/integrations/zendesk) Manage support tickets, users, and organizations in Zendesk - [Zep](https://docs.sim.ai/integrations/zep) Long-term memory for AI agents - [ZeroBounce](https://docs.sim.ai/integrations/zerobounce) Validate email deliverability and check account credits - [Zoom Server-to-Server OAuth Apps](https://docs.sim.ai/integrations/zoom-service-account) Set up a Zoom Server-to-Server OAuth app so your workflows can call Zoom without a personal OAuth login - [Zoom](https://docs.sim.ai/integrations/zoom) Create and manage Zoom meetings and recordings - [ZoomInfo](https://docs.sim.ai/integrations/zoominfo) Search and enrich B2B company and contact data with ZoomInfo. ### Tables - [Overview](https://docs.sim.ai/tables) A grid of typed columns and rows in your workspace, for data your workflows read and write. - [Using tables in workflows](https://docs.sim.ai/tables/using-in-workflows) How a workflow reads, writes, and updates table rows with the Table block. - [Workflow columns](https://docs.sim.ai/tables/workflow-columns) A column backed by a workflow that runs once per row, reading chosen columns as inputs and writing its results back into result columns. ### Workflows - [Connections](https://docs.sim.ai/workflows/connections) The syntax for referencing an earlier block's output and the shape of common block outputs. - [How blocks pass data](https://docs.sim.ai/workflows/data-flow) What a block's output is, how blocks reference earlier outputs, and the data types you'll work with. - [How workflows run](https://docs.sim.ai/workflows/how-it-runs) How Sim orders the blocks, runs independent ones in parallel, and follows branches. - [Overview](https://docs.sim.ai/workflows) A workflow is a visual program made of blocks, a saved procedure your AI systems run. - [Variables](https://docs.sim.ai/workflows/variables) Define reusable workflow variables referenced with angle brackets and environment variables referenced with double curly braces. - [Agent](https://docs.sim.ai/workflows/blocks/agent) The Agent block runs a model over your inputs to reason, call tools, and return text or structured output. - [API](https://docs.sim.ai/workflows/blocks/api) The API block makes an HTTP request to an external service and returns the response. - [Condition](https://docs.sim.ai/workflows/blocks/condition) The Condition block branches a workflow on boolean expressions, with no model call. - [Credential](https://docs.sim.ai/workflows/blocks/credential) The Credential block outputs an OAuth credential's ID reference for downstream blocks to use. - [Evaluator](https://docs.sim.ai/workflows/blocks/evaluator) The Evaluator block uses a model to score content against metrics you define. - [Function](https://docs.sim.ai/workflows/blocks/function) The Function block runs your JavaScript or Python code as a step and returns what it produces. - [Guardrails](https://docs.sim.ai/workflows/blocks/guardrails) The Guardrails block checks content against a validation type before it moves through the workflow. - [Human in the Loop](https://docs.sim.ai/workflows/blocks/human-in-the-loop) The Human in the Loop block pauses a run for human approval, then resumes with their input. - [Logs](https://docs.sim.ai/workflows/blocks/logs) - [Loop](https://docs.sim.ai/workflows/blocks/loop) The Loop block is a container that runs the blocks inside it repeatedly — over a collection, a count, or while a condition holds. - [Parallel](https://docs.sim.ai/workflows/blocks/parallel) The Parallel block is a container that runs the block inside it concurrently — once per item or a fixed number of times. - [Pi Coding Agent](https://docs.sim.ai/workflows/blocks/pi) The Pi Coding Agent block runs an autonomous coding agent on a real repository — opening a pull request, reviewing an existing PR, or editing files on your machine over SSH. - [Response](https://docs.sim.ai/workflows/blocks/response) The Response block ends an API-triggered workflow and returns a structured HTTP response. - [Router](https://docs.sim.ai/workflows/blocks/router) The Router block uses a model to pick one of several paths based on the content it reads. - [Variables](https://docs.sim.ai/workflows/blocks/variables) The Variables block updates workflow variables during a run, read from any block by name. - [Wait](https://docs.sim.ai/workflows/blocks/wait) The Wait block pauses a workflow for a set time before continuing. - [Outgoing Webhook](https://docs.sim.ai/workflows/blocks/webhook) The Outgoing Webhook block sends an HTTP POST to an external endpoint, with automatic headers and optional signing. - [Workflow Block](https://docs.sim.ai/workflows/blocks/workflow) Run another workflow inside the current flow - [API deployment](https://docs.sim.ai/workflows/deployment/api) - [Chat deployment](https://docs.sim.ai/workflows/deployment/chat) - [Overview](https://docs.sim.ai/workflows/deployment) How a workflow becomes an operational system that outside callers can run, with versioned snapshots and rollback. - [MCP deployment](https://docs.sim.ai/workflows/deployment/mcp) Expose your workflows as MCP tools for external AI assistants and applications - [RSS Feed](https://docs.sim.ai/workflows/triggers/rss) The RSS trigger runs a workflow when a new item is published to an RSS or Atom feed. - [Schedule](https://docs.sim.ai/workflows/triggers/schedule) The Schedule trigger runs a workflow on a timer — a simple interval or a cron expression. - [Sim Workspace Events](https://docs.sim.ai/workflows/triggers/sim) - [Start](https://docs.sim.ai/workflows/triggers/start) The Start block is the default trigger — it collects typed inputs and runs the workflow from the editor, an API call, or chat. - [Table](https://docs.sim.ai/workflows/triggers/table) The Table trigger runs a workflow when a row is inserted or updated in a Sim table. - [Webhook](https://docs.sim.ai/workflows/triggers/webhook) The Webhook trigger runs a workflow on any inbound HTTP request to a URL Sim generates. ## Additional Resources - [Full documentation content](https://docs.sim.ai/llms-full.txt) - Individual page content: https://docs.sim.ai/llms.mdx/[page-path] - [API documentation](https://docs.sim.ai/api-reference/) - [Tool integrations](https://docs.sim.ai/tools/) ## Statistics - Total pages: 429 (English only) - Other languages available at: https://docs.sim.ai/[lang]/ (es, fr, de, ja, zh) --- Generated: 2026-07-21T04:10:21.459Z Format: llms.txt v0.1.0 See: https://llmstxt.org for specification