# GET /api/ticket_labels > Miscellaneous - List Ticket Labels - **Endpoint:** `GET /api/ticket_labels` - **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/ticket_labels" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json [ { "id": "12", "title": "label 4", "color": "#e74c3c", "context": "ticket", "user_id": "0", "deleted": "0" }, { "id": "11", "title": "label 4", "color": "#f1c40f", "context": "ticket", "user_id": "0", "deleted": "0" }, { "id": "10", "title": "label 3", "color": "#29c2c2", "context": "ticket", "user_id": "0", "deleted": "0" }, { "id": "9", "title": "label 2", "color": "#ad159e", "context": "ticket", "user_id": "0", "deleted": "0" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/miscellaneous/get-ticket-labels/