# Scoop LinkedIn Email Finder

> Scoop LinkedIn Email Finder is a paid API for AI agents from scoop-api-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Finds verified work and/or personal email addresses for a person given their LinkedIn profile URL or name and company, querying multiple data providers (Aleads, Apollo, Nymeria, ContactOut) with optional Hunter.io deliverability verification.

## Facts

- Endpoint: POST https://scoop-api-production.up.railway.app/x402/find-email
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scoop-linkedin-email-finder-b85533e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hlp2l_hlDqJtRgDRDrsSg

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability scoop-linkedin-email-finder-b85533e0 -d '<json body>'
```

Example prompt: Find the work email for Sarah Johnson at acme.com — her LinkedIn is https://www.linkedin.com/in/sarah-johnson-acme — and verify whether the email is deliverable.

## When to prefer this

Choose this endpoint when you need to find a professional or personal email for a specific individual and have their LinkedIn URL or at least their full name and company domain. It aggregates across four data providers (Aleads, Apollo, Nymeria, ContactOut) for higher coverage than single-provider alternatives, returns results in under 5 seconds, and optionally verifies deliverability via Hunter.io — making it ideal for sales prospecting, recruiting outreach, or B2B lead enrichment workflows.

## Known failure modes

- No email found across all providers — returns empty results for unknown or private individuals
- Invalid LinkedIn URL format — returns validation error
- Ambiguous name with no company domain — may return incorrect results or no match
- Hunter.io verification unavailable — verification step may fail or be skipped
- Rate limiting or provider downtime — may return partial results or timeout

## How this service works

Find verified work and/or personal emails for a LinkedIn profile across multiple data providers (Aleads, Apollo, Nymeria, ContactOut). Optional Hunter.io verification. Returns in <5s.

## Output

Returns a list of found email addresses categorized as work or personal, sourced from multiple data providers. When verify=true, each email includes Hunter.io deliverability verification status. Response arrives in under 5 seconds.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "verify": {
   "type": "boolean",
   "default": false,
   "description": "When true, runs Hunter.io deliverability verification on each email."
  },
  "full_name": {
   "type": "string",
   "description": "Person's full name. Alternative to linkedin_url; requires company_domain (preferred) or company_name."
  },
  "last_name": {
   "type": "string"
  },
  "first_name": {
   "type": "string"
  },
  "email_types": {
   "type": "array",
   "items": {
    "enum": [
     "work",
     "personal"
    ],
    "type": "string"
   },
   "default": [
    "work",
    "personal"
   ]
  },
  "company_name": {
   "type": "string",
   "description": "Company name fallback when no domain is known."
  },
  "linkedin_url": {
   "type": "string",
   "format": "uri",
   "description": "Full LinkedIn profile URL — most accurate input mode when available."
  },
  "company_domain": {
   "type": "string",
   "description": "Company website domain, e.g. 'microsoft.com'. Use with full_name when no LinkedIn URL is available."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scoop-linkedin-email-finder-b85533e0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scoop-api-production.up.railway.app](https://www.zero.xyz/host/scoop-api-production.up.railway.app/llms.txt)
