# GET /api/contacts/{id} > Contacts - Get Contact by ID - **Endpoint:** `GET /api/contacts/{id}` - **Group:** Contacts - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ContactsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `id` | Number | yes | Contact unique ID | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/contacts/123" \ -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/show-contact/