# GET /api/notes > Notes - List all Notes - **Endpoint:** `GET /api/notes` - **Group:** Notes - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/NotesController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `project_id` | Number | no | Optional filter by project ID | | `client_id` | Number | no | Optional filter by client ID | | `is_public` | Number | no | Optional filter by public/private (0 or 1) | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/notes" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json [ { "id": "1", "title": "Meeting notes", "description": "Summary", "project_id": "1", "client_id": "0", "is_public": "0" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/notes/get-notes/