{
  "openapi": "3.0.1",
  "info": {
    "title": "Email & Domain OSINT (WHOIS + DNS + SSL + Breach)",
    "description": "Per email: disposable / role detection, provider, optional password breach check (HIBP k-anonymity). Per domain: WHOIS, DNS (A/AAAA/MX/TXT/SPF/DMARC/DKIM probe), SSL cert + days-to-expiry, public HIBP breach metadata. All free APIs. $0.005 per target checked.",
    "version": "1.0",
    "x-build-id": "f52lMvldtmlhO0gZe"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/gochujang~email-domain-osint/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-gochujang-email-domain-osint",
        "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/gochujang~email-domain-osint/runs": {
      "post": {
        "operationId": "runs-sync-gochujang-email-domain-osint",
        "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/gochujang~email-domain-osint/run-sync": {
      "post": {
        "operationId": "run-sync-gochujang-email-domain-osint",
        "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 (list)",
            "type": "array",
            "description": "Email addresses to validate and check. Domains are auto-derived from these.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "emailsText": {
            "title": "Emails (bulk text, newline-separated)",
            "type": "string",
            "description": "Paste multiple emails one per line. Merged with the 'emails' list above.",
            "default": ""
          },
          "email": {
            "title": "Single email (shortcut)",
            "type": "string",
            "description": "Quick single-email input when not using the list.",
            "default": ""
          },
          "domains": {
            "title": "Domains (list)",
            "type": "array",
            "description": "Domains to check in addition to those derived from emails.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "domainsText": {
            "title": "Domains (bulk text, newline-separated)",
            "type": "string",
            "description": "Paste multiple domains one per line (e.g. example.com). Merged with the 'domains' list above.",
            "default": ""
          },
          "domain": {
            "title": "Single domain (shortcut)",
            "type": "string",
            "description": "Quick single-domain input.",
            "default": ""
          },
          "csvUrl": {
            "title": "CSV URL (bulk domains)",
            "type": "string",
            "description": "URL to a CSV file whose first column (or the column at csvColumn index) contains domain names. Fetched and merged with the domains list above.",
            "default": ""
          },
          "csvColumn": {
            "title": "CSV column index",
            "minimum": 0,
            "type": "integer",
            "description": "Zero-based column index in the CSV that contains domain names.",
            "default": 0
          },
          "enrichCompany": {
            "title": "Enrich with company info",
            "type": "boolean",
            "description": "Extract company name from domain and generate LinkedIn/Crunchbase URL guesses.",
            "default": true
          },
          "skipMxProbe": {
            "title": "Skip MX reachability probe",
            "type": "boolean",
            "description": "Skip SMTP port 25 probe to MX host (checks if mail server is online).",
            "default": false
          },
          "samplePassword": {
            "title": "Sample password (HIBP k-anonymity, optional)",
            "type": "string",
            "description": "If provided, checks if this password appears in known breaches via HIBP's k-anonymity model — only the first 5 chars of SHA-1 are sent. Plaintext is NEVER transmitted."
          },
          "skipWhois": {
            "title": "Skip WHOIS",
            "type": "boolean",
            "description": "WHOIS adds 1-3s per domain. Disable for faster batch mode.",
            "default": false
          },
          "skipSsl": {
            "title": "Skip SSL cert check",
            "type": "boolean",
            "description": "SSL cert lookup adds 0.5-2s per domain.",
            "default": false
          },
          "usernames": {
            "title": "Usernames (list)",
            "type": "array",
            "description": "Usernames to look up across social/developer platforms.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "username_platforms": {
            "title": "Platforms to search (username lookup)",
            "type": "array",
            "description": "Which platforms to check for each username. Leave empty to use all 20 defaults: github, twitter, reddit, instagram, youtube, tiktok, pinterest, medium, dev, hackernews, producthunt, stackoverflow, npm, pypi, dockerhub, gitlab, twitch, patreon, steam, keybase.",
            "default": [],
            "items": {
              "type": "string"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}