# GET /api/announcements > Announcements - List all Announcements - **Endpoint:** `GET /api/announcements` - **Group:** Announcements - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/AnnouncementsController.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/announcements" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json [ { "id": "1", "title": "Holiday notice", "description": "Office closed", "start_date": "2024-01-01", "end_date": "2024-01-02" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/announcements/get-announcements/