Skip to main content
POST
Phone Enrichment Launcher
Phone Enrichment OverviewYou input: LinkedIn URL/slug, email, or name + domainYou get: Mobile and direct-dial phone numbers in E.164 format
This is an asynchronous endpoint. Use the returned job_id with Phone Enrichment Finder to retrieve results.We recommend passing webhook_url for a smoother integration — Waterfall will POST the result directly to your endpoint as soon as the job is ready, so you don’t need to poll.
You are only charged when a phone number is successfully returned.

Input strategies

If a previous attempt with LinkedIn was unsuccessful, retry with a professional email — the two methods use different underlying data sources.

Business notes

Add your internal notes here — pricing tier, credit cost per successful number, SLA guarantees, etc.
  • Billing: charged per phone number returned, not per launch
  • Format: all numbers returned in E.164 format (e.g. +14155550123)
  • Coverage: mobile_phone returns the primary number; phone_numbers is the full list

Next step

After launching, call Phone Enrichment Finder with the job_id:

Authorizations

x-api-key
string
header
required

To access the API, provide your API key in x-api-key.

Body

application/json

Phone enrichment payload: provide one identifier strategy (linkedin, email, full_name + domain, or first_name + last_name + domain) plus optional webhook_url and custom_fields.

Request payload to launch a phone enrichment job.

linkedin
string | null
required

Company LinkedIn URL or ID/handle (for example google from https://www.linkedin.com/company/google/). Recommended input to maximize coverage.

Required string length: 3 - 500
Example:

"waterfall-io"

full_name
string | null

Full name of the contact. Providing first_name and last_name is preferable when both are available.

Required string length: 4 - 250
Example:

"John Doe"

first_name
string | null

First name of the contact.

Required string length: 1 - 100
Example:

"John"

last_name
string | null

Last name of the contact.

Required string length: 1 - 100
Example:

"Doe"

domain
string

The domain where you want to find contacts. It can be a plain domain or a full URL; Waterfall automatically extracts the company domain.

Required string length: 4 - 500
Example:

"waterfall.io"

email
string<email>

Professional or personal email address.

Required string length: 6 - 254
Example:

"john.doe@example.com"

webhook_url
string<uri>

Optional webhook callback URL. If supplied, Waterfall POSTs the same payload returned by the Finder endpoint when processing completes. If your webhook responds with 429, 500, 502, or 504, Waterfall retries delivery up to 5 times with exponential backoff. Waterfall includes X-Webhook-Signature containing a compact JWT when webhook signing configuration is available. The JWT protected header contains alg: "EdDSA", kid, and typ: "JWT". Its claims contain iat, exp, jti, job_id, body_hash, and body_hash_alg: "sha-256". body_hash is the unpadded base64url-encoded SHA-256 digest of the exact raw request body bytes. The JSON body is unchanged by signing. Signatures expire exactly 15 minutes after iat; receivers should reject expired signatures. If signing configuration is unavailable or invalid, Waterfall preserves backward compatibility by sending the callback unsigned without X-Webhook-Signature.

Maximum string length: 2083
Example:

"https://webhook.site/70dd34e3-564d-4339-81e3-ed97416140a1"

custom_fields
object | null

Optional custom key-value metadata echoed on job input and output (useful for correlating internal source metadata). On create requests, omit the field or send JSON null when no custom fields are needed; both are stored as {}. When present, the value must be a JSON object with keys matching ^[A-Za-z0-9_-]+$ and values that are a string (max 1000 characters), number, or boolean. Empty string, arrays, and other non-object types return HTTP 400. On job GET responses, input.task.custom_fields is always an object ({} or populated).

Example:

Response

Phone enrichment job successfully launched.

Response returned when a phone enrichment job is successfully launched.

job_id
string<uuid>
required

A UUID.

Example:

"7d44db58-5de3-4e92-a2fb-8325d12c2e8b"

start_date
string<date-time>
required

A date time in ISO 8601 format.

Example:

"2025-02-05T15:46:35.771751+00:00"