Hunter · Schema

DiscoverResult

Contact DiscoveryEmailEmail VerificationLead GenerationProspectingSales Intelligence

Properties

Name Type Description
domain string Domain name of the discovered company.
organization string Name of the organization.
emails_count object
View JSON Schema on GitHub

JSON Schema

hunter-discoverresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DiscoverResult",
  "title": "DiscoverResult",
  "type": "object",
  "properties": {
    "domain": {
      "type": "string",
      "description": "Domain name of the discovered company.",
      "example": "example_value"
    },
    "organization": {
      "type": "string",
      "description": "Name of the organization.",
      "example": "example_value"
    },
    "emails_count": {
      "type": "object",
      "properties": {
        "personal": {
          "type": "integer",
          "description": "Number of personal emails found."
        },
        "generic": {
          "type": "integer",
          "description": "Number of generic emails found."
        },
        "total": {
          "type": "integer",
          "description": "Total emails found."
        }
      },
      "example": "[email protected]"
    }
  }
}