EN ZH

🔄 n8n Executor

Use when executing n8n workflows, checking workflow status, or retrieving execution data.

Overview

Assists in the execution and monitoring of workflows in an n8n instance using the n8n API. This skill allows agents to bridge LLM intelligence with complex automated workflows.

When to Use

Core Pattern

Always confirm the workflow ID and the endpoint URL before execution to ensure you are targeting the correct workflow.

# Example API call
curl -X POST "https://n8n.example.com/api/v1/workflows/[ID]/execute" \
     -H "X-N8N-API-KEY: [API_KEY]"

Quick Reference

Action Endpoint Pattern
Execute POST /workflows/:id/execute
Get Status GET /executions/:id
List Workflows GET /workflows

Implementation

  1. Obtain workflow ID and API key from n8n settings.
  2. Construct the API request (using curl or a similar tool).
  3. Handle the response and log the execution ID for future status checks.

Common Mistakes

← Back to Skills