Endpoint · Events

Get an event

One event in full, with its type-specific data and source articles.

GET/v1/events/{eventReference}

Authentication

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

Parameters

path parameters

eventReferenceuuid·pathrequired
The event's reference.

Response

success holds the object below.

  • 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.

Examples

Set CHIKARA_API_TOKEN and each sample runs as written. Example records are invented.

curl -sS "https://api.chikaraintel.com/v1/events/e5f6a7b8-c9d0-4e1f-8a3b-c4d5e6f7a881" \
  -H "Authorization: Bearer $CHIKARA_API_TOKEN" \
  -H "Accept: application/json"

See pagination and errors.

Used by

MCP tools built on this endpoint.

Related