{
  "openapi": "3.0.1",
  "info": {
    "title": "📬 B2B Work Email Finder & Verifier (Apollo/Clay)",
    "description": "Find verified corporate email addresses for any decision maker. Zero-send real-time SMTP handshakes, catch-all detection, DNS MX resolution, and cold outreach copy without Apollo or Clay subscriptions.",
    "version": "0.0",
    "x-build-id": "SqhfU7nI2ShNeawi9"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/automation_studio~b2b-email-finder-verifier/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-automation_studio-b2b-email-finder-verifier",
        "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/automation_studio~b2b-email-finder-verifier/runs": {
      "post": {
        "operationId": "runs-sync-automation_studio-b2b-email-finder-verifier",
        "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/automation_studio~b2b-email-finder-verifier/run-sync": {
      "post": {
        "operationId": "run-sync-automation_studio-b2b-email-finder-verifier",
        "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": [
          "searchMode"
        ],
        "properties": {
          "searchMode": {
            "title": "🎯 Verification Mode",
            "enum": [
              "single",
              "bulk"
            ],
            "type": "string",
            "description": "Choose whether you want to verify a single decision maker or extract/verify bulk leads in batch.",
            "default": "single"
          },
          "firstName": {
            "title": "👤 First Name *",
            "type": "string",
            "description": "Compulsory: First name of the target decision maker (e.g. Yamini, Elliott, Marc). Must not be empty in Single mode.",
            "default": "Yamini"
          },
          "lastName": {
            "title": "👤 Last Name *",
            "type": "string",
            "description": "Compulsory: Last name of the target decision maker (e.g. Rangan, Hill, Benioff). Must not be empty in Single mode.",
            "default": "Rangan"
          },
          "companyDomain": {
            "title": "🌐 Company Domain or Name *",
            "type": "string",
            "description": "Compulsory: Company website domain (e.g. hubspot.com, nike.com, stripe.com) or business name. Must not be empty.",
            "default": "hubspot.com"
          },
          "jobTitle": {
            "title": "💼 Job Title (Optional)",
            "type": "string",
            "description": "Job title or seniority level (e.g. CEO, VP of Sales, Head of Marketing).",
            "default": "CEO"
          },
          "linkedinUrl": {
            "title": "🔗 LinkedIn Profile URL (Optional)",
            "type": "string",
            "description": "Direct LinkedIn profile link (e.g. https://www.linkedin.com/in/yaminirangan/)."
          },
          "bulkLeadsText": {
            "title": "📋 Bulk Leads (Paste CSV / Lines * Required in Bulk Mode)",
            "type": "string",
            "description": "Paste multiple leads directly from Excel or Google Sheets (one per line: firstName,lastName,domain). Each lead must have first name, last name, and domain. Example:\nYamini,Rangan,hubspot.com\nElliott,Hill,nike.com\nMarc,Benioff,salesforce.com",
            "default": ""
          },
          "leads": {
            "title": "📑 Structured Leads List",
            "type": "array",
            "description": "Or add leads one by one using this structured editor.",
            "items": {
              "type": "object",
              "properties": {
                "firstName": {
                  "type": "string",
                  "title": "First Name *",
                  "description": "Target person's first name."
                },
                "lastName": {
                  "type": "string",
                  "title": "Last Name *",
                  "description": "Target person's last name."
                },
                "companyDomain": {
                  "type": "string",
                  "title": "Company Domain *",
                  "description": "Target company website domain (e.g. stripe.com)."
                },
                "jobTitle": {
                  "type": "string",
                  "title": "Job Title",
                  "description": "Target person's executive job title."
                }
              },
              "required": [
                "firstName",
                "lastName",
                "companyDomain"
              ]
            },
            "default": []
          },
          "enableDeepSmtpVerification": {
            "title": "⚡ Enterprise Multi-Hop SMTP Verification",
            "type": "boolean",
            "description": "Test candidate email permutations through distributed enterprise SMTP relays to pinpoint the exact deliverable mailbox.",
            "default": true
          },
          "enableSecEdgarVerification": {
            "title": "🏛️ SEC EDGAR Regulatory Footprint",
            "type": "boolean",
            "description": "Cross-reference official US SEC filings (Form 8-K, Form 4, 10-K, Form D) to corroborate corporate executives and confirm deliverable emails when mail servers restrict port 25.",
            "default": true
          },
          "checkCatchAll": {
            "title": "🛡️ Detect Catch-All Domains",
            "type": "boolean",
            "description": "Probe mail servers with random tokens to detect accept-all configurations, preventing false 100% deliverability claims.",
            "default": true
          },
          "timeoutSeconds": {
            "title": "⏱️ Connection Timeout (Seconds)",
            "minimum": 2,
            "maximum": 15,
            "type": "integer",
            "description": "Maximum seconds per network probe before falling back gracefully.",
            "default": 5
          },
          "allowPersonalEmails": {
            "title": "📧 Allow Consumer Domains (Gmail, Yahoo)",
            "type": "boolean",
            "description": "If false, automatically filters out free consumer email providers (e.g. gmail.com, yahoo.com) to focus strictly on corporate domains.",
            "default": false
          },
          "maxConcurrency": {
            "title": "⚡ Max Concurrent Verifications",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Number of leads to verify in parallel. High concurrency speeds up large lists.",
            "default": 5
          }
        }
      },
      "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}