# Get Event Type

`lawmatics_get-event-type` · Lawmatics MCP tool · Event Types

Fetch a single event type from Lawmatics by ID, including a `relationships` envelope of {id,type} pointers to the events booked against it.

## Input

- **eventTypeId** `string` (required, pattern: ^\d+$) — ID of the event type to fetch; a numeric string

## Output

- **id** `string` (required) — Lawmatics event type ID
- **name** `string` (required) — Event type name
- **duration** `number` (required) — Default event duration in minutes
- **createdAt** `string` (required) — When the event type was created, as an ISO 8601 timestamp
- **updatedAt** `string` (required) — When the event type was last updated, as an ISO 8601 timestamp
- **relationships** `object` (required) — JSON:API relationship pointers to related records as {id,type} stubs. Not materialized — follow a pointer by calling that resource's own get tool (e.g. type 'event' -> get-event).
  - **events** `array` (required) — Event pointers (type 'event') booked against this event type; empty if none
    - **[]** `object`
      - **id** `string` (required) — ID of the referenced Lawmatics record
      - **type** `string` (required) — JSON:API record class of the reference; resolve it by calling that resource's own tool
