# Get a list of assessments **GET /api/v1/assessments** Retrieve a list of assessments associated with a specific wound, with optional sorting, pagination, and filtering. ## Servers - https://publicapi.ekareinc.com: https://publicapi.ekareinc.com () ## Authentication methods - Api key auth ## Parameters ### Path parameters - **wound_id** (integer) ID of the wound ### Query parameters - **per_page** (integer) Number of items per page. - **fields** (string(csv)) Comma-separated list of fields to be returned in the response. Only 'id', 'date', 'created_at', and 'values' columns are allowed. - **filter** (object) Filter criteria to narrow down the list of assessments. 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. '/assessments?wound_id=3089&filter[date]=>=2021-01-01') - **sort** (string) Field to sort the results by. Only 'id' and 'created_at' columns are allowed, 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) ### 404 Not Found #### Body: application/json (object) - **error** (string) - **message** (string) - **error_code** (number) ### 403 Forbidden #### Body: application/json (object) - **error** (string) - **message** (string) - **error_code** (number) ### 422 Bad Request #### Body: application/json (object) - **error** (string) - **message** (string) - **error_code** (number) [Powered by Bump.sh](https://bump.sh)