Hunter · Schema

LeadInput

Contact DiscoveryEmailEmail VerificationLead GenerationProspectingSales Intelligence

Properties

Name Type Description
email string Email address of the lead.
first_name string First name of the lead.
last_name string Last name of the lead.
position string Job position or title.
company string Company name.
company_industry string Industry of the company.
company_size string Size range of the company.
confidence_score integer Confidence score for the lead email.
website string Website URL associated with the lead.
country_code string ISO 3166-1 alpha-2 country code.
linkedin_url string LinkedIn profile URL.
phone_number string Phone number.
twitter string Twitter handle.
notes string Free-text notes about the lead.
leads_list_id integer Identifier of the leads list to add the lead to.
View JSON Schema on GitHub

JSON Schema

hunter-leadinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LeadInput",
  "title": "LeadInput",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the lead.",
      "example": "[email protected]"
    },
    "first_name": {
      "type": "string",
      "description": "First name of the lead.",
      "example": "example_value"
    },
    "last_name": {
      "type": "string",
      "description": "Last name of the lead.",
      "example": "example_value"
    },
    "position": {
      "type": "string",
      "description": "Job position or title.",
      "example": "example_value"
    },
    "company": {
      "type": "string",
      "description": "Company name.",
      "example": "example_value"
    },
    "company_industry": {
      "type": "string",
      "description": "Industry of the company.",
      "example": "example_value"
    },
    "company_size": {
      "type": "string",
      "description": "Size range of the company.",
      "example": "example_value"
    },
    "confidence_score": {
      "type": "integer",
      "minimum": 0,
      "maximum": 100,
      "description": "Confidence score for the lead email.",
      "example": 10
    },
    "website": {
      "type": "string",
      "format": "uri",
      "description": "Website URL associated with the lead.",
      "example": "https://www.example.com"
    },
    "country_code": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code.",
      "example": "example_value"
    },
    "linkedin_url": {
      "type": "string",
      "format": "uri",
      "description": "LinkedIn profile URL.",
      "example": "https://www.example.com"
    },
    "phone_number": {
      "type": "string",
      "description": "Phone number.",
      "example": "example_value"
    },
    "twitter": {
      "type": "string",
      "description": "Twitter handle.",
      "example": "example_value"
    },
    "notes": {
      "type": "string",
      "description": "Free-text notes about the lead.",
      "example": "example_value"
    },
    "leads_list_id": {
      "type": "integer",
      "description": "Identifier of the leads list to add the lead to.",
      "example": "500123"
    }
  }
}