Skip to main content
WhiteWhale can POST events to any URL you specify whenever a signal fires or an account is added from suggestions. Use webhooks to pipe data into Clay, trigger automations, update internal tools, or build custom CRM integrations.

Setup

There are two ways to register a webhook URL. Option 1: In the platform: Go to SettingsAPI & Webhooks → paste your endpoint URL and save. Option 2: Via the API: POST /v1/set_webhook with your URL in the request body.
One webhook URL per account. The same endpoint receives all event types.

Testing your webhook

Before going live, send a test payload to your endpoint using the API.
ParameterDescription
event_type"account.upload" or "account.signal"
spoof_payloadtrue returns a fake payload with the correct structure. Requires at least one signal on an account.
icp_nameOptional. If provided, returns a real signal and account name instead of spoofed data.
The payload returned in the API response is unsigned. The payload delivered to your actual webhook endpoint will be signed.

Event types

WhiteWhale sends two types of events.
Sent every morning when a new signal match is found. This is the most common event type and the primary source of daily signal data.Payload structure:
Signal payload fields:
FieldTypeDescription
owner_emailstringWhiteWhale user who owns the account
accountstringAccount domain
signal_namestringName of the signal that fired
sourcestringURL of the source document
pub_datedatetimePublication date of the source
why_nowstringWhiteWhale’s Why Now summary for the account
full_signal_summarystringExtended summary of the signal
crm_account_idstringCRM account ID if CRM is connected
article_summary.headlinestringHeadline of the source document
article_summary.quotesarrayKey quotes from the source
article_summary.relevant_factsarrayKey facts extracted from the source
article_summary.one_sentence_summarystringOne-line summary of the source
article_summary.document_typestringType of source (news article, job posting, earnings call, etc.)
Sent when a new account is uploaded or when Account Suggestions finishes pre-scoring an account. Returns the full account object including all signal data.Payload structure:
Key account fields:
FieldTypeDescription
idstringWhiteWhale account UUID
scaled_scorenumberAccount score 0–100. If status is farsight, this is a prediction score.
statusstringactive, archived, or farsight
summarystringWhy Now summary
signal_listarrayNames of all signals currently matching this account
signalsarrayFull signal answer objects with sources, quotes, and dates
account_data.li_employeesintegerEmployee count from LinkedIn
account_data.linkedin_urlstringCompany LinkedIn URL

Timing

EventWhen it fires
account.signalDaily, each morning when new signal matches are found
account.uploadImmediately when an account is uploaded or activated, and when Account Suggestions finishes pre-scoring

API Reference

Full endpoint reference including /v1/set_webhook and /v1/test_webhook.

Clay

Use webhooks to pipe WhiteWhale data directly into Clay.