Hunter · Schema

DomainSearchResult

Contact DiscoveryEmailEmail VerificationLead GenerationProspectingSales Intelligence

Properties

Name Type Description
domain string The domain name searched.
disposable boolean Whether the domain is a disposable email service.
webmail boolean Whether the domain is a webmail provider.
accept_all boolean Whether the mail server accepts all email addresses.
pattern stringnull The email address pattern detected for the domain.
organization string The name of the organization associated with the domain.
emails array
View JSON Schema on GitHub

JSON Schema

hunter-domainsearchresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DomainSearchResult",
  "title": "DomainSearchResult",
  "type": "object",
  "properties": {
    "domain": {
      "type": "string",
      "description": "The domain name searched.",
      "example": "example_value"
    },
    "disposable": {
      "type": "boolean",
      "description": "Whether the domain is a disposable email service.",
      "example": true
    },
    "webmail": {
      "type": "boolean",
      "description": "Whether the domain is a webmail provider.",
      "example": true
    },
    "accept_all": {
      "type": "boolean",
      "description": "Whether the mail server accepts all email addresses.",
      "example": true
    },
    "pattern": {
      "type": [
        "string",
        "null"
      ],
      "description": "The email address pattern detected for the domain.",
      "example": "example_value"
    },
    "organization": {
      "type": "string",
      "description": "The name of the organization associated with the domain.",
      "example": "example_value"
    },
    "emails": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DomainEmail"
      },
      "example": "[email protected]"
    }
  }
}