{
  "openapi": "3.0.1",
  "info": {
    "title": "Fast Email Validator & Verifier | $1/1K | Bulk List Cleanup",
    "description": "Bulk email verifier that cleans your list before you send: cut bounce rate & protect sender reputation. Checks syntax, MX & live SMTP mailbox (RCPT TO) with catch-all detection. Flags disposable, role & free emails, fixes typos, scores 0-100. Email Finder built in. $1/1K, no API key.",
    "version": "0.9",
    "x-build-id": "oahKVJXN6OECHbyxL"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/apivault_labs~email-validator/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-apivault_labs-email-validator",
        "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/apivault_labs~email-validator/runs": {
      "post": {
        "operationId": "runs-sync-apivault_labs-email-validator",
        "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/apivault_labs~email-validator/run-sync": {
      "post": {
        "operationId": "run-sync-apivault_labs-email-validator",
        "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": {
          "emails": {
            "title": "Email addresses",
            "type": "array",
            "description": "Email addresses to validate (one per line), e.g. john.doe@acme.com.",
            "items": {
              "type": "string"
            }
          },
          "emailsText": {
            "title": "…or paste a list / CSV column",
            "type": "string",
            "description": "Optional. Paste many addresses at once (one per line, or comma/semicolon separated — e.g. a copied spreadsheet column). They are merged with the list above and de-duplicated."
          },
          "findEmails": {
            "title": "Email Finder — find an address from name + domain",
            "type": "array",
            "description": "Optional. One person per line as \"First Last, domain.com\" (comma, @ or space separated). Generates the common corporate patterns (john.doe@, jdoe@, john@…) and, when the live SMTP check is on, verifies which one actually exists. Turn on 'Live SMTP mailbox check' below to confirm the address.",
            "items": {
              "type": "string"
            }
          },
          "checkMx": {
            "title": "Check domain deliverability (MX / DNS)",
            "type": "boolean",
            "description": "Look up each domain's MX records to confirm it can receive mail and detect the mail provider. Turn off for a faster syntax-only pass.",
            "default": true
          },
          "smtpVerification": {
            "title": "Live SMTP mailbox check (verify inbox + catch-all)",
            "type": "boolean",
            "description": "Confirm whether the specific mailbox exists and detect catch-all domains that accept any address. This is the strongest deliverability signal. Works on cloud platforms; when a mailbox can't be confirmed it falls back to the domain (MX) signals and never fails the run. Slower than the domain-only pass; best for high-value lists. Tip: set a proxy below for larger runs.",
            "default": false
          },
          "proxyUrl": {
            "title": "Proxy for SMTP verification",
            "type": "string",
            "description": "Optional but recommended for the live mailbox check on bulk lists — a proxy improves throughput and reliability. Use 'auto' for Apify Residential (recommended), or paste your own proxy as http://user:pass@host:port (or host:port:user:pass). Leave empty to run the mailbox check without a proxy (fine for smaller lists)."
          },
          "proxySessions": {
            "title": "Proxy sessions to rotate",
            "minimum": 1,
            "maximum": 30,
            "type": "integer",
            "description": "How many proxy attempts to make per address before giving up.",
            "default": 8
          },
          "smtpTimeout": {
            "title": "SMTP timeout (seconds)",
            "minimum": 4,
            "maximum": 30,
            "type": "integer",
            "description": "Per-step timeout for the SMTP mailbox check.",
            "default": 10
          },
          "freshDisposableList": {
            "title": "Use full disposable-domain list (18k+ domains)",
            "type": "boolean",
            "description": "Use the full disposable/throwaway domain list (18,000+ domains) instead of the smaller built-in set. Adds a second or two at startup and catches far more temporary mailboxes. Falls back to the built-in set if unavailable.",
            "default": true
          },
          "deduplicate": {
            "title": "De-duplicate addresses",
            "type": "boolean",
            "description": "Remove duplicate addresses using provider-aware normalization (Gmail dots and +tags are ignored). Keeps the first occurrence.",
            "default": true
          },
          "onlyValid": {
            "title": "Return only syntactically valid emails",
            "type": "boolean",
            "description": "If on, drop addresses that fail the syntax check from the output.",
            "default": false
          },
          "onlyDeliverable": {
            "title": "Return only deliverable emails",
            "type": "boolean",
            "description": "If on, keep only addresses whose status is valid or risky (drops invalid/undeliverable). Best run right before sending.",
            "default": false
          },
          "dropDisposable": {
            "title": "Drop disposable / throwaway emails",
            "type": "boolean",
            "description": "If on, remove addresses on known temporary-mailbox domains.",
            "default": false
          },
          "dropRoleBased": {
            "title": "Drop role-based emails",
            "type": "boolean",
            "description": "If on, remove group mailboxes like info@, sales@, support@ (keep only personal addresses).",
            "default": false
          },
          "exportFormat": {
            "title": "Export format",
            "enum": [
              "default",
              "csv",
              "both"
            ],
            "type": "string",
            "description": "default = full JSON. csv = flat CSV-friendly columns. both = JSON + nested _csv.",
            "default": "default"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}