New260+ blocks and 240+ tools are now fully documented
DocumentationReferenceTool IntegrationsData Enrichment
Tool

Prospeo Tools

Find verified professional emails and mobile numbers from a name, company, or LinkedIn profile URL.

Prospeo is a B2B contact-enrichment API that resolves verified professional email addresses and mobile phone numbers. Use these tools in a workflow when you need to enrich a lead or contact: find an email from a person's name and company, find an email from a LinkedIn profile URL, or reveal a mobile number from a LinkedIn profile URL.

Overview

PropertyValue
Providerprospeo
Categorytools
AuthAPI Key (sent in the X-KEY request header)

Operations

OperationTool IDDescription
Email finderprospeo_email_finderFind a verified professional email address from a person's name and company.
Mobile finderprospeo_mobile_finderFind a mobile phone number from a LinkedIn profile URL.
LinkedIn email finderprospeo_linkedin_email_finderFind a verified professional email address from a LinkedIn profile URL.

Configuration

prospeo_email_finder

Calls POST https://api.prospeo.io/email-finder.

ParameterTypeRequiredDescription
apiKeystringYesProspeo API key. Secret — sent in the X-KEY header. Visibility: user-only.
first_namestringYesPerson's first name. Visibility: user-or-llm.
last_namestringYesPerson's last name. Visibility: user-or-llm.
companystringYesCompany name or domain. Visibility: user-or-llm.

prospeo_mobile_finder

Calls POST https://api.prospeo.io/mobile-finder.

ParameterTypeRequiredDescription
apiKeystringYesProspeo API key. Secret — sent in the X-KEY header. Visibility: user-only.
urlstringYesLinkedIn profile URL to resolve a mobile number for. Visibility: user-or-llm.

prospeo_linkedin_email_finder

Calls POST https://api.prospeo.io/linkedin-email-finder.

ParameterTypeRequiredDescription
apiKeystringYesProspeo API key. Secret — sent in the X-KEY header. Visibility: user-only.
urlstringYesLinkedIn profile URL to resolve an email for. Visibility: user-or-llm.

Outputs

All three operations share the same output shape.

prospeo_email_finder

  • data (json) — The matched email record from Prospeo.
  • metadata (json) — Response metadata.
    • metadata.error (boolean) — Whether the API reported an error.

prospeo_mobile_finder

  • data (json) — The matched mobile record from Prospeo.
  • metadata (json) — Response metadata.
    • metadata.error (boolean) — Whether the API reported an error.

prospeo_linkedin_email_finder

  • data (json) — The matched email record from Prospeo.
  • metadata (json) — Response metadata.
    • metadata.error (boolean) — Whether the API reported an error.

YAML Example

prospeo_1:
  type: prospeo
  name: "Prospeo"
  inputs:
    operation: "prospeo_email_finder"
    first_name: "Jane"
    last_name: "Doe"
    company: "acme.com"
    apiKey: "{{PROSPEO_API_KEY}}"
  connections:
    outgoing:
      - target: next-block-id

To use the LinkedIn-based operations instead, set operation to prospeo_mobile_finder or prospeo_linkedin_email_finder and pass a url instead of name/company:

prospeo_2:
  type: prospeo
  name: "Prospeo"
  inputs:
    operation: "prospeo_linkedin_email_finder"
    url: "https://www.linkedin.com/in/janedoe"
    apiKey: "{{PROSPEO_API_KEY}}"
  connections:
    outgoing:
      - target: next-block-id

Tips

  • Authenticate with a Prospeo API key. Store it as an environment variable and reference it with {{PROSPEO_API_KEY}} rather than hard-coding the value — it is sent in the X-KEY header.
  • Pick the operation to match the input you have: use prospeo_email_finder when you know the person's name and company/domain, and use prospeo_mobile_finder or prospeo_linkedin_email_finder when you have a LinkedIn profile URL.
  • Read the result from the data output (e.g. {{prospeo_1.data}}), and check {{prospeo_1.metadata.error}} to detect when the API reported an error before consuming the email or mobile number downstream.
  • company accepts either a company name or a domain (for example acme.com); a domain typically yields the most reliable match.