# get_event

One event in full, including source articles and their annotated statements.

Canonical: https://chikaraintel.com/docs/mcp/tools/get_event

Group: Events. Read only.

## When to use

Use it on the handful of events that matter after a search. It returns what search_events leaves out: the full compensation block on a move, deal terms and participants on a deal, and the verbatim statements on each source article.

Call `search_events` first.

## Parameters

- `reference` (uuid, body, required) The event reference UUID, as returned by search_events.

## Example

Prompt: "Open the Halberd CFO appointment and show me what the chair said."

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_event",
    "arguments": {
      "reference": "e5f6a7b8-c9d0-4e1f-8a3b-c4d5e6f7a881"
    }
  }
}
```

Result (invented records):

```json
{
  "reference": "e5f6a7b8-c9d0-4e1f-8a3b-c4d5e6f7a881",
  "event_type": "move",
  "summary": "Halberd Industrial Group appoints Elena Marchetti as Chief Financial Officer",
  "publish_date": "2026-08-04T07:00:00+00:00",
  "data": {
    "move_type": "Appointment",
    "effective_date": "2026-09-01T00:00:00+00:00",
    "profile": {
      "reference": "a1b2c3d4-e5f6-4a7b-9c8d-e9f0a1b2c341",
      "first_name": "Elena",
      "last_name": "Marchetti"
    },
    "occupation": {
      "reference": "7d0e1f2a-b4c5-4d6e-9f8a-b9c0d1e2f3d1",
      "name": "Chief Financial Officer"
    },
    "organisation": {
      "reference": "3f2a9c1e-7b4d-4e8a-9c21-5d6e7f8a9b01",
      "name": "Halberd Industrial Group"
    },
    "compensations": [
      {
        "type": "Base salary",
        "value": "520000",
        "value_type": "Amount",
        "value_suffix": "GBP"
      },
      {
        "type": "Sign-on",
        "value": "150",
        "value_type": "Percentage",
        "value_suffix": "% of salary"
      }
    ],
    "articles": [
      {
        "reference": "8e1f2a3b-c5d6-4e7f-8a9b-c0d1e2f3a4e1",
        "title": "Appointment of Chief Financial Officer",
        "url": "https://www.example.com/halberd/2026/cfo-appointment",
        "published_at": "2026-08-04T07:00:00+00:00",
        "annotations": [
          {
            "type": "feedback",
            "summary": "The chair on the appointment",
            "text": "Elena brings deep experience of integrating acquired businesses.",
            "speaker": {
              "kind": "person",
              "name": "Daniel Reyes",
              "role": "Chair"
            },
            "subject": {
              "name": "Elena Marchetti",
              "profile_reference": "a1b2c3d4-e5f6-4a7b-9c8d-e9f0a1b2c341"
            }
          }
        ]
      }
    ]
  }
}
```

## Errors

- `Not found.`: No event has that reference.

## Built on

- GET /v1/events/{eventReference} (https://chikaraintel.com/docs/api/reference/events/get-event.md)
