LinkedIn Profile from Personal Email
Resolve a personal email address to the matching LinkedIn profile and identity context.
Shared June 2026
- 1
Install & authenticate
$ curl -fsSL "https://deepline.com/api/v2/sdk/install" | bash
- 2
Test out this play on my data
What this workflow does
Resolve a personal email address to the matching LinkedIn profile and identity context.
LinkedIn Profile from Personal Email (Deepline play "personal-email-to-linkedin", version 1). Resolve a personal email address to the matching LinkedIn profile and identity context. Pipeline: 4 steps, 4 providers. Inputs: personal_email. Outputs: personal_email, normalized_email, linkedin_url, linkedin_source, name, company, title, linkedin_profile_found, miss_reason.
Inputs you need
Bring these fields
- personal_email
Outputs you get
Produced by the run
- personal_email
- normalized_email
- linkedin_url
- linkedin_source
- name
- company
- title
- linkedin_profile_found
- miss_reason
How it works
Step 1
Enrichment waterfall
4 providers, first match wins
- native enrich contact · Deepline
- person detail reverse lookup by email · Forager
- reverse email lookup · Findymail
- enrich contact · Peopledatalabs
Cost/latency when available
This public page does not show cost or latency yet. Deepline only displays those metrics when the published package has safe, comparable run samples, and cost is always shown in Deepline credits.
Common edits
- Rename the copied play before the first run so it is owned by your workspace.
- Map your CSV headers into the expected input fields and add status or miss_reason columns.
- Keep stable step, fetch, dataset, and play-call ids so retries and durable receipts stay useful.
- Edit the final projection before scale so the output table matches your CRM or campaign import.
Use it when
- You need data from Deepline, Forager, Findymail and Peopledatalabs in one pass.
- You want a repeatable pipeline instead of one-off lookups.
- You want an agent or teammate to run the same workflow on demand.
Related workflows
Run or fork with Deepline CLI
LinkedIn Profile from Personal Email is a Deepline play. Inputs: personal_email. Outputs: personal_email, normalized_email, linkedin_url, linkedin_source, name, company, title, linkedin_profile_found, miss_reason.
# Inspect the contract
$ deepline plays describe prebuilt/personal-email-to-linkedin --json
# Copy to an owned scratchpad
$ deepline plays get prebuilt/personal-email-to-linkedin --source --out personal-email-to-linkedin-scratchpad.play.ts
# Check before running
$ deepline plays check personal-email-to-linkedin-scratchpad.play.ts
# Paste into Claude Code, Cursor, or Codex.
$ Use the deepline-gtm skill's plays recipe to turn the Deepline play "LinkedIn Profile from Personal Email" (https://deepline.com/p/deepline/personal-email-to-linkedin) into an editable scratchpad play. Inputs: personal_email. Outputs: personal_email, normalized_email, linkedin_url, linkedin_source, name, company, title, linkedin_profile_found, miss_reason. The .play.ts file is the source of truth: copy the play, rename it for this user's workflow, encode input mapping/validation/status/output projection in the play, and iterate there instead of doing one-off CSV post-processing. Keep stable dataset names, dataset row keys, and step/fetch/play-call ids across edits. Provider tool calls reuse paid work by play, tool, semantic input, auth scope, provider action version, and cache policy unless you intentionally change those inputs or refresh stale data. # install Deepline if the CLI is missing curl -fsSL "https://deepline.com/api/v2/sdk/install" | bash # inspect the live contract deepline plays describe prebuilt/personal-email-to-linkedin --json # copy to an owned scratchpad, then rename the play inside the file before first run deepline plays get prebuilt/personal-email-to-linkedin --source --out personal-email-to-linkedin-scratchpad.play.ts # edit personal-email-to-linkedin-scratchpad.play.ts: set an owned play name, add mappings/validation/status/miss_reason/final columns deepline plays check personal-email-to-linkedin-scratchpad.play.ts # run the scratchpad on your data deepline plays run --file personal-email-to-linkedin-scratchpad.play.ts --input '{"personal_email":"<value>"}' --watch # only for an exact one-off with no edits or custom output deepline plays run prebuilt/personal-email-to-linkedin --input '{"personal_email":"<value>"}' --watch Play spec (JSON): https://deepline.com/api/v2/shared-plays/prebuilt-personal-email-to-linkedin
Version
v1 · Shared June 2026 · Unlisted page