Hunter · Schema

EmailCountResult

Contact DiscoveryEmailEmail VerificationLead GenerationProspectingSales Intelligence

Properties

Name Type Description
total integer Total number of email addresses found.
personal_emails integer Number of personal email addresses.
generic_emails integer Number of generic email addresses.
department object Breakdown of email count by department.
seniority object Breakdown of email count by seniority level.
View JSON Schema on GitHub

JSON Schema

hunter-emailcountresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmailCountResult",
  "title": "EmailCountResult",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of email addresses found.",
      "example": 10
    },
    "personal_emails": {
      "type": "integer",
      "description": "Number of personal email addresses.",
      "example": "[email protected]"
    },
    "generic_emails": {
      "type": "integer",
      "description": "Number of generic email addresses.",
      "example": "[email protected]"
    },
    "department": {
      "type": "object",
      "description": "Breakdown of email count by department.",
      "additionalProperties": {
        "type": "integer"
      },
      "example": "example_value"
    },
    "seniority": {
      "type": "object",
      "description": "Breakdown of email count by seniority level.",
      "additionalProperties": {
        "type": "integer"
      },
      "example": "example_value"
    }
  }
}