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