Apps
List apps with pagination
GET
/api/apps/paginatedReturn apps ordered by name with a total count. Supports a name filter and page controls. Requires app-modify-all permission.
Authorization
apikey ApiKey<token>
API key which can be obtained in the Homarr administration dashboard
In: header
Query Parameters
search?string
pageSize?integer
Range
0 < value <= 100Default
10page?integer
Range
0 < value <= 9007199254740991Default
1Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/api/apps/paginated"{ "items": [ { "id": "string", "name": "string", "description": "string", "iconUrl": "string", "href": "string", "pingUrl": "string" } ], "totalCount": 0}