# Get a list of wounds for a patient **GET /api/v1/wounds** Retrieve a list of wounds for a patient with optional sorting, pagination, and filtering. ## Servers - https://publicapi.ekareinc.com: https://publicapi.ekareinc.com () ## Authentication methods - Api key auth ## Parameters ### Query parameters - **patient_id** (integer) ID of the patient to retrieve wounds for. - **per_page** (integer) Number of items per page. - **fields** (string(csv)) Comma-separated list of fields to be returned in the response. Only 'id', 'onset_date', 'type', 'secondary_type', 'primary_location', 'secondary_location', 'is_front', 'is_locked', 'status', 'created_at', and 'updated_at' columns are allowed. - **filter** (object) Filter criteria to narrow down the list of patients. The filter parameter is an object with key-value pairs where the key is the field to filter by and the value is '{operator}{value}'. The operator is optional and defaults to '='. (e.g. '/wounds?patient_id=3089&filter[is_locked]=false&filter[status]=Active') - **sort** (string) Field to sort the results by, prefixed with a minus sign (-) for descending order and without for ascending order. ## Responses ### 200 Successful operation #### Body: application/json (object) - **data** (array[object]) - **metadata** (object) ### 401 Unauthorized #### Body: application/json (object) - **error** (string) - **message** (string) - **error_code** (number) ### 403 Forbidden #### Body: application/json (object) - **error** (string) - **message** (string) - **error_code** (number) ### 404 Resource Not Found #### Body: application/json (object) - **error** (string) - **message** (string) - **error_cde** (number) ### 422 Bad Request #### Body: application/json (object) - **error** (string) - **message** (string) - **error_code** (number) [Powered by Bump.sh](https://bump.sh)