Pelican Admin API
Base: /api/application/plugins
Admin view of all installed modpacks and active installations across all servers.
GET
/modpacks
Admin: All Installed Modpacks
Paginated list of all servers with an installed modpack, including update and installation status.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
page
|
integer | No | Page number (25 per page) |
Response Example
{"object":"list","data":[{"object":"server_modpack","data":{"server_uuid":"abc12345","server_name":"My Minecraft Server","provider":"curseforge","modpack_id":"1210677","modpack_name":"All the Mods 9","version_id":"7687225","version_name":"1.0.5","installed_at":"2026-05-01T12:00:00Z","has_update":true,"installation_in_progress":false}}],"meta":{"current_page":1,"last_page":2,"per_page":25,"total":42}}
GET
/modpacks/active-installs
Admin: Active Installations
Returns all servers that currently have a modpack installation in progress, with step-by-step progress.
Response Example
{"object":"list","data":[{"object":"active_installation","data":{"server_uuid":"abc12345","server_name":"My Minecraft Server","overall_progress":65,"started_at":"2026-05-14T16:00:00Z","steps":[{"key":"backup","status":"completed","progress":100},{"key":"download","status":"running","progress":65}]}}],"meta":{"total":1}}