# GET /api/project_members > Miscellaneous - List Project Members - **Endpoint:** `GET /api/project_members` - **Group:** Miscellaneous - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/UtilitiesController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/project_members" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json { "id": "6", "user_id": "1", "project_id": "1", "is_leader": "1", "deleted": "0", "member_name": "Fname Lname", "member_image": null, "job_title": "Admin", "user_type": "staff" * } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/miscellaneous/get-project-members/