# GET /api/contracts > Contracts - List all Contracts - **Endpoint:** `GET /api/contracts` - **Group:** Contracts - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ContractsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `client_id` | Number | no | Optional filter by client ID | | `status` | String | no | Optional filter by status (draft, sent, accepted, declined) | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/contracts" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json [ { "id": "1", "title": "Contract A", "client_id": "2", "project_id": "1", "contract_date": "2024-01-15", "valid_until": "2024-12-31", "status": "sent" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/contracts/get-contracts/