Hunter · Schema

LeadsList

Contact DiscoveryEmailEmail VerificationLead GenerationProspectingSales Intelligence

Properties

Name Type Description
id integer Unique identifier for the leads list.
name string Name of the leads list.
leads_count integer Number of leads in the list.
created_at string Timestamp when the list was created.
View JSON Schema on GitHub

JSON Schema

hunter-leads-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LeadsList",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier for the leads list."
    },
    "name": {
      "type": "string",
      "description": "Name of the leads list."
    },
    "leads_count": {
      "type": "integer",
      "description": "Number of leads in the list."
    },
    "created_at": {
      "type": "string",
      "description": "Timestamp when the list was created."
    }
  }
}