{
  "openapi": "3.0.1",
  "info": {
    "title": "n8n Template Authors · Emails from Their Sites",
    "description": "Export unique n8n template authors with a public email from their website. One author per row: inbox, phone, site, templates. n8n does not list emails — we read the creator site when they publish them. No login. No API key.",
    "version": "0.5",
    "x-build-id": "zZjwyqfvgbyB25teV"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/corent1robert~n8n-template-author-contacts/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-corent1robert-n8n-template-author-contacts",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/corent1robert~n8n-template-author-contacts/runs": {
      "post": {
        "operationId": "runs-sync-corent1robert-n8n-template-author-contacts",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/corent1robert~n8n-template-author-contacts/run-sync": {
      "post": {
        "operationId": "run-sync-corent1robert-n8n-template-author-contacts",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "coverage": {
            "title": "Mode",
            "enum": [
              "search",
              "catalog"
            ],
            "type": "string",
            "description": "**Search (default):** use Step 2 (keyword, template URL, creator URL and/or category).\n\n**Full catalog (paid):** walks public templates into unique authors. Leave Step 2 empty — it is ignored. Free Apify plans cannot use Full catalog.",
            "default": "search"
          },
          "query": {
            "title": "Keyword or n8n URL",
            "type": "string",
            "description": "Examples: `hubspot` · `https://n8n.io/workflows/11807` · `https://n8n.io/creators/tuguidragos`\n\nLeave empty if you only pick a category. **Ignored** when Mode is Full catalog."
          },
          "category": {
            "title": "Template category",
            "enum": [
              "",
              "Lead Generation",
              "Marketing",
              "CRM",
              "Sales",
              "AI",
              "Support",
              "HR",
              "IT Ops",
              "DevOps",
              "Document Ops",
              "Social Media",
              "Project Management",
              "Content Creation",
              "Market Research",
              "Other"
            ],
            "type": "string",
            "description": "Optional, Search mode only. Leave **None** if you already typed a query. **Ignored** when Mode is Full catalog.",
            "default": "Lead Generation"
          },
          "maxAuthors": {
            "title": "Max authors",
            "minimum": 0,
            "maximum": 5000,
            "type": "integer",
            "description": "**Global** cap of unique author rows (one creator, many templates). Default **20**. Search: up to **2,000**. Full catalog (paid): up to **5,000**. **0** = no extra cap besides your paid plan.",
            "default": 20
          },
          "skipOfficialN8n": {
            "title": "Skip official n8n accounts",
            "enum": [
              "yes",
              "no"
            ],
            "type": "string",
            "description": "**Yes (default):** keep independent creators. **No:** include official n8n usernames if they appear.",
            "default": "yes"
          },
          "verifiedOnly": {
            "title": "Verified creators only",
            "enum": [
              "no",
              "yes"
            ],
            "type": "string",
            "description": "**No (default):** all listed authors. **Yes:** keep n8n-verified creators only.",
            "default": "no"
          },
          "websiteEnrichment": {
            "title": "Find public emails",
            "enum": [
              "yes",
              "no"
            ],
            "type": "string",
            "description": "**On (recommended):** open each author website and export the public inbox and phone when they are on the site. n8n templates never list an email.\n\n**Off:** website + templates only — cheaper if you already enrich domains in Clay.",
            "default": "yes"
          },
          "websiteEmailMaxPages": {
            "title": "Max pages per website",
            "minimum": 1,
            "maximum": 8,
            "type": "integer",
            "description": "Homepage plus same-origin contact/legal pages when Find public emails is On.",
            "default": 5
          },
          "verboseLogs": {
            "title": "Verbose logs",
            "type": "boolean",
            "description": "Add debug lines to the run log.",
            "default": false
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}