> ## Documentation Index
> Fetch the complete documentation index at: https://docs.transparencyhubnetwork.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Events

> Retrieve events for a chapter.

## Query Parameters

<ParamField query="chapter_id" type="integer" required>
  Chapter ID.
</ParamField>

<ParamField query="offset" type="integer" default="0">
  Pagination offset.
</ParamField>

<ParamField query="limit" type="integer" default="50">
  Maximum records.
</ParamField>

## Response

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "success",
    "data": {
      "events": [
        {
          "id": 1,
          "title": "Annual General Meeting",
          "description": "Yearly review and elections",
          "start_time": "2025-06-15T14:00:00Z",
          "end_time": "2025-06-15T16:00:00Z",
          "timezone": "Africa/Lagos",
          "meeting_link": "https://meet.google.com/abc-defg-hij",
          "meeting_provider_type": "google_meet",
          "record_meeting": true,
          "chapter_id": 1
        }
      ],
      "pagination": {
        "total": 25,
        "offset": 0,
        "limit": 50
      }
    }
  }
  ```
</ResponseExample>
