Retrieve a list of health items with optional search and pagination
Fetches a paginated list of health items, optionally filtered by a search query. Provides pagination metadata including total items, total pages, current page, and page size.
GET
/api/v1/health
curl \
-X GET https://ark.collegecanine.com/api/v1/health
Response examples (200)
{
"data": [
{
"id": 42,
"name": "string"
}
],
"pagination": {
"totalItems": 42,
"totalPages": 42,
"currentPage": 42,
"pageSize": 42
}
}