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

# Get Member

> Retrieve a single member by ID.

## Path Parameters

<ParamField path="id" type="integer" required>
  The member ID.
</ParamField>

## Response

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "success",
    "data": {
      "id": 1,
      "firstname": "John",
      "lastname": "Doe",
      "email": "john@example.com",
      "phone": "+2348012345678",
      "chapter_id": 1,
      "membertype_id": 1,
      "status": "active",
      "date_of_birth": "1990-05-15",
      "createddate": "2025-01-15T10:00:00Z"
    }
  }
  ```
</ResponseExample>
