{
  "openapi": "3.0.1",
  "info": {
    "title": "Decision-Maker Finder – People & Emails by Company & Title",
    "description": "Find the people to contact at any list of companies — by job title, seniority and department — with name, title, public profile URL, location and a work e-mail (pattern-matched, mail-server checked). Input: company names, domains or a company list. No login, no cookies. Dataset-only, MCP-ready.",
    "version": "0.1",
    "x-build-id": "XCKJjo6obcuXRwhLH"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/inovaflow~decision-maker-finder/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-inovaflow-decision-maker-finder",
        "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/inovaflow~decision-maker-finder/runs": {
      "post": {
        "operationId": "runs-sync-inovaflow-decision-maker-finder",
        "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/inovaflow~decision-maker-finder/run-sync": {
      "post": {
        "operationId": "run-sync-inovaflow-decision-maker-finder",
        "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",
        "required": [
          "companies"
        ],
        "properties": {
          "companies": {
            "title": "Companies",
            "type": "array",
            "description": "One per line: a domain (`gong.io`), a company name (`Syberry`, or `Syberry, Austin TX`) or a company profile URL. Also accepted: the rows of a company list as objects {name, domain, linkedinUrl} — e.g. the output of a company finder — and the aliases `domains`, `websites`, `urls`.",
            "items": {
              "type": "string"
            }
          },
          "titles": {
            "title": "Titles to find",
            "type": "array",
            "description": "Job titles or keywords, one per line — abbreviations are understood (`CEO`, `VP Sales`, `Head of Marketing`, `CRO`, `RevOps`). Each is matched against the person's current title in every common phrasing (\"VP of Sales\", \"Vice President, Sales\"…). Leave empty to get the decision makers at each company (founders, C-level, VPs, heads, directors).",
            "items": {
              "type": "string"
            }
          },
          "maxPeoplePerCompany": {
            "title": "Max people per company",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Cap on delivered people per company (highest seniority and best title match first). Also caps what you pay.",
            "default": 10
          },
          "seniorities": {
            "title": "Seniority",
            "uniqueItems": true,
            "type": "array",
            "description": "Keep only these levels. Empty = any.",
            "items": {
              "type": "string",
              "enum": [
                "founder",
                "c-level",
                "vp",
                "director",
                "head",
                "manager",
                "individual"
              ],
              "enumTitles": [
                "Founder / co-founder",
                "C-level / president / partner",
                "VP / SVP / EVP",
                "Director",
                "Head of",
                "Manager / lead",
                "Individual contributor"
              ]
            },
            "default": []
          },
          "departments": {
            "title": "Department",
            "uniqueItems": true,
            "type": "array",
            "description": "Keep only these departments. Empty = any.",
            "items": {
              "type": "string",
              "enum": [
                "executive",
                "sales",
                "marketing",
                "engineering",
                "product",
                "data",
                "design",
                "finance",
                "operations",
                "hr",
                "customer-success",
                "it",
                "legal",
                "other"
              ],
              "enumTitles": [
                "Executive (CEO, founder, president)",
                "Sales & revenue",
                "Marketing & growth",
                "Engineering",
                "Product",
                "Data & AI",
                "Design",
                "Finance",
                "Operations",
                "People / HR",
                "Customer success & support",
                "IT & security",
                "Legal & compliance",
                "Other"
              ]
            },
            "default": []
          },
          "maxSearchesPerCompany": {
            "title": "Max searches per company",
            "minimum": 1,
            "maximum": 15,
            "type": "integer",
            "description": "How many search-engine result pages one company may use, retries included (a page holds up to ten profiles; one page per title group and result page). More pages = more coverage for big companies and broad title lists.",
            "default": 6
          },
          "findEmails": {
            "title": "Find work e-mails",
            "type": "boolean",
            "description": "Add `email`, `emailPattern`, `emailConfidence`, `emailVerified`, `emailVerification` and up to four `emailCandidates` per person. Needs the company domain (given, or found on its profile / website).",
            "default": true
          },
          "verifyEmails": {
            "title": "Verify e-mails",
            "type": "boolean",
            "description": "Check syntax and the domain's mail server (MX) for every candidate; domains without a mail server yield no e-mail.",
            "default": true
          },
          "smtpVerification": {
            "title": "SMTP mailbox check",
            "type": "boolean",
            "description": "Also ask the mail server whether the mailbox exists (and detect catch-all domains) where the network allows it; falls back to the mail-server check otherwise.",
            "default": true
          },
          "useProfileSearch": {
            "title": "Public profile search",
            "type": "boolean",
            "description": "Find people through web search over public professional profiles (name, current title, location, profile URL). Uses Apify's Google search proxy, a few requests per company.",
            "default": true
          },
          "useWebsite": {
            "title": "Company website team pages",
            "type": "boolean",
            "description": "Read the company's team / about / leadership pages for named executives with titles (free, direct fetch). Also the source of the domain's e-mail pattern.",
            "default": true
          },
          "maxCompanies": {
            "title": "Max companies",
            "minimum": 1,
            "maximum": 2000,
            "type": "integer",
            "description": "Upper bound on companies processed in one run.",
            "default": 200
          },
          "countryCode": {
            "title": "Search country",
            "type": "string",
            "description": "Two-letter country code for the profile search edition (us, gb, de, …).",
            "default": "us"
          },
          "language": {
            "title": "Search language",
            "type": "string",
            "description": "Two-letter language code for the profile search.",
            "default": "en"
          },
          "maxConcurrency": {
            "title": "Parallel companies",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "How many companies are processed at once.",
            "default": 6
          },
          "stopWhenNothingMatches": {
            "title": "Stop when nothing matches",
            "type": "boolean",
            "description": "Stop the run early when the first 10 companies searched deliver nobody — usually wrong company names / domains or too narrow title, seniority or department filters — instead of searching the whole list. Turn off for sparse lists where most companies are expected to have nobody.",
            "default": true
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}