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-leadslist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LeadsList",
  "title": "LeadsList",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier for the leads list.",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "description": "Name of the leads list.",
      "example": "Example Title"
    },
    "leads_count": {
      "type": "integer",
      "description": "Number of leads in the list.",
      "example": 10
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the list was created.",
      "example": "2026-01-15T10:30:00Z"
    }
  }
}