# GET /api/contacts > Contacts - List all Contacts - **Endpoint:** `GET /api/contacts` - **Group:** Contacts - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ContactsController.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/contacts" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 200 OK [ { "id": "6", "first_name": "Fname", "last_name": "Lname", "user_type": "client", "email": "contact@example.com", "client_id": "3", "is_primary_contact": "0", "job_title": "HR", "phone": "1234567890", "gender": "male", "status": "active", "created_at": "2021-09-18 11:26:56", "deleted": "0" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/contacts/get-contacts/