Endpoint · Events

List events

Events newest first, filtered by type, date, organisation, industry, or a saved search.

GET/v1/events

Authentication

Bearer token in the Authorization header. The token reaches what your plan covers. Getting a token.

Parameters

query parameters

eventTypestring·query
Restrict to one event type.movefundingpublic_offeringmerger_and_acquisitionclient_summaryrelationship_change
publishedDatedate·query
Published on this date, YYYY-MM-DD.
publishedDateFromdate·query
Published on or after this date.
publishedDateTodate·query
Published on or before this date.
organisationReferenceuuid·query
Events involving this organisation in any role: employer on a move, recipient of funding, either side of a deal.
industryCodestring·query
A GICS code prefix. Applies to moves.
queryIduuid·query
Apply a saved search from POST /v1/search/events.
dealStatusstring·query
Deals only, with eventType=merger_and_acquisition. One of the deal statuses.
dealTypestring·query
Deals only. One of the deal types.
jurisdictionstring·query
Deals only. A two-letter jurisdiction code.
dealValueMinnumber·query
Deals only. Minimum deal value in USD.
dealValueMaxnumber·query
Deals only. Maximum deal value in USD.
pageinteger·query
1-based page number.Default 1
limitinteger·query
Rows per page, up to 200. A larger value is capped at 200, not rejected.Default 20

Response

success holds an array of the objects below, and meta holds the paging details.

  • referenceuuidThe event's reference.
  • event_typestringSee event types.
  • summarystring | nullA readable one-line summary.
  • publish_datedatetimeWhen the event became public.
  • dataobjectFields for this event type.Show 13 fields
    • move_typestringMoves. One of the move types.
    • profileobjectMoves. { reference, first_name, last_name }.
    • occupationobject | nullMoves. { reference, name }.
    • organisationobject{ reference, name } and, on moves, listings and addresses.
    • effective_datedatetimeMoves. When the move takes effect.
    • compensationsarrayMoves. { type, value, value_type, value_suffix } per component.
    • articlesarrayMoves. Source articles with their annotations.
    • roundstringFunding. The round, such as SeriesB.
    • valuenumberFunding. The amount raised, with currency_code.
    • acquirerobjectDeals. { reference, name }.
    • acquireeobjectDeals. { reference, name }.
    • dealobjectDeals. type, status, value, value_usd, announcement_date, completion_date and terms.
    • entriesarrayAUM records. One row per client type.
  • linksobject | arrayRelated links. Empty on most types.

Invalid dates currently return a 500 rather than a validation message. Send dates as YYYY-MM-DD.

Examples

Set CHIKARA_API_TOKEN and each sample runs as written. List samples page until a short page, with a hard cap. Example records are invented.

curl -sS -G "https://api.chikaraintel.com/v1/events" \
  -H "Authorization: Bearer $CHIKARA_API_TOKEN" \
  -H "Accept: application/json" \
  --data-urlencode "eventType=move" \
  --data-urlencode "publishedDateFrom=2026-08-01" \
  --data-urlencode "publishedDateTo=2026-08-31" \
  --data-urlencode "limit=50" \
  --data-urlencode "page=1"

See pagination and errors.

Used by

MCP tools built on this endpoint.

Related