Project HermesHermes Docs
API ReferenceGoogle Maps Scraper

Import to Lead List

Import Google Maps scraper results into a Hermes lead list

Import to Lead List

Import scraper results into a Hermes lead list.

curl -X POST https://api.hermes.camie.ai/v1/google-maps-scraper/runs/5/import-to-lead-list \
  -H "Authorization: Bearer hermes_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "leadListId": 40,
    "requireEmail": false,
    "includePhoneOnly": true,
    "includeGenericEmails": true,
    "minValidationScore": 0,
    "maxLeadsPerCompany": 2
  }'

Request Body

FieldTypeDefaultDescription
leadListIdnumberRun leadListIdTarget lead list
requireEmailbooleantrueSkip items without an importable email
includePhoneOnlybooleanfalseCreate a phone-only business contact when no email exists
includeGenericEmailsbooleanfalseAllow generic addresses such as info@ or contact@
minValidationScorenumber70Minimum email validation score
maxLeadsPerCompanynumber3Maximum contacts imported per company
limitnumber500Maximum run items to process

Response

{
  "success": true,
  "message": "Google Maps scraper run imported to lead list",
  "data": {
    "runId": 5,
    "leadListId": 40,
    "importedLeads": 1,
    "importedCompanies": 1,
    "skippedItems": 1
  }
}

Hermes preserves provenance on imported leads, including the scraper run ID, Maps URL, search string, location query, and website contact source when present.

On this page