# Service/list_with_status list of all services from a country with current status ## Methods ![](https://img.shields.io/badge/-GET-green) ## Request ```` GET api.service-down.net/service/country/:country_id/with_status ```` ## Parameters List of url parameters available on this endpoint | Name | Description | Type | |------|-------------|------| | `page` (optionnal) | Index for pagination. By default 1 | number | ## Response Return an array of [Service](type_service) with [Status](type_status) wrapped into [Paging](type_paging) ```json { "data": [ { "service": { "id": 146 "name": "Orange", "cname": "ORANGE", "path": "/status/orange-france", "countries": [ 74 ] }, "country": 74, "status": { "id": 3, "label": "error" } }, ... ], "paging": { "totalDataCount": 3, "dataPerPage": 6, "currentPage": 1, "hasPrev": false, "hasNext": false, "totalPage": 1 } } ``` ## Errors - [`4 - paging_index_out_of_range`](type_error#list-of-errors) - [`101 - country_not_found`](type_error#list-of-errors) - [`102 - country_not_available`](type_error#list-of-errors)