Hunter · Arazzo Workflow

Hunter Combined Enrich and Upsert Lead

Version 1.0.0

Combine person and company enrichment for an email, then upsert it as a lead.

1 workflow 1 source API 1 provider
View Spec View on GitHub Contact DiscoveryEmailEmail VerificationLead GenerationProspectingSales IntelligenceArazzoWorkflows

Provider

hunter

Workflows

combined-enrich-upsert-lead
Combined-enrich an email, then upsert an enriched lead.
Pulls person and company data for an email via combined enrichment and upserts a lead populated with the discovered name and company.
2 steps inputs: apiKey, email, leadsListId outputs: companyName, leadId
1
combinedEnrich
combinedEnrichment
Run combined enrichment to capture both the person's name and the company name behind the email address.
2
upsertLeadStep
upsertLead
Upsert a lead populated with the enriched name and company for the email, creating it when new or updating it when it already exists.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Hunter Combined Enrich and Upsert Lead
  summary: Combine person and company enrichment for an email, then upsert it as a lead.
  description: >-
    Turns a bare email address into a richly populated lead. The flow runs
    combined enrichment to pull both the person and the company behind an
    email, then upserts a lead populated with the enriched name, company, and
    employer details. Each step spells out its request inline, including the
    api_key query parameter, so the flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: hunterApi
  url: ../openapi/hunter-api-openapi.yml
  type: openapi
workflows:
- workflowId: combined-enrich-upsert-lead
  summary: Combined-enrich an email, then upsert an enriched lead.
  description: >-
    Pulls person and company data for an email via combined enrichment and
    upserts a lead populated with the discovered name and company.
  inputs:
    type: object
    required:
    - apiKey
    - email
    properties:
      apiKey:
        type: string
        description: Hunter API key passed as the api_key query parameter.
      email:
        type: string
        description: Email address to enrich and upsert as a lead.
      leadsListId:
        type: integer
        description: Optional leads list identifier to add the lead to.
  steps:
  - stepId: combinedEnrich
    description: >-
      Run combined enrichment to capture both the person's name and the
      company name behind the email address.
    operationId: combinedEnrichment
    parameters:
    - name: api_key
      in: query
      value: $inputs.apiKey
    - name: email
      in: query
      value: $inputs.email
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      givenName: $response.body#/data/person/name/givenName
      familyName: $response.body#/data/person/name/familyName
      companyName: $response.body#/data/company/name
  - stepId: upsertLeadStep
    description: >-
      Upsert a lead populated with the enriched name and company for the email,
      creating it when new or updating it when it already exists.
    operationId: upsertLead
    parameters:
    - name: api_key
      in: query
      value: $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        email: $inputs.email
        first_name: $steps.combinedEnrich.outputs.givenName
        last_name: $steps.combinedEnrich.outputs.familyName
        company: $steps.combinedEnrich.outputs.companyName
        leads_list_id: $inputs.leadsListId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      leadId: $response.body#/data/id
      leadEmail: $response.body#/data/email
  outputs:
    companyName: $steps.combinedEnrich.outputs.companyName
    leadId: $steps.upsertLeadStep.outputs.leadId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/hunter-combined-enrich-upsert-lead-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.