Skip to main content
3 min read

abm-dev source / events

Read what enrichment produced. The source command returns the full v2 envelope (snapshot + narrative + events). The events command returns just the events stream — handy for piping into a webhook or a CRM trigger.

source

abm-dev source <enrichment-id> \
  [--events-window-days 180] \
  [--json]

Default output renders identity, industry, head count, HQ, recent events, and any cached destination values as a human-readable summary. --json dumps the full envelope unchanged.

events

abm-dev events <enrichment-id> \
  [--type funding_round | leadership_change | ...] \
  [--since 2026-01-01] \
  [--json]

See Events for the full list of --type values.

Patterns

Pipe events into a Slack notifier:

abm-dev events 12455 --type funding_round --json \
  | jq -r '.[] | "\(.happened_at) \(.payload.round_name) at \(.payload.amount) by \(.payload.lead_investor)"' \
  | xargs -I {} slack-cli post --channel sales "{}"

Related