API Endpoints
Versions List
List available Magma versions
Versions List
GET /api/versionsParameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | number | 10 | Number of versions to return. 0 for all. |
Response
{
"total": 35,
"limit": 10,
"versions": [
{
"groupId": "org.magmafoundation",
"artifactId": "magma",
"version": "21.1.33-beta",
"minecraftVersion": "1.21.x",
"installerUrl": "https://repo.magmafoundation.org/.../magma-21.1.33-beta-installer.jar",
"launcherUrl": "https://repo.magmafoundation.org/.../magma-21.1.33-beta-launcher.jar",
"changelogUrl": "https://repo.magmafoundation.org/.../magma-21.1.33-beta-changelog.txt",
"isStable": false,
"hasLauncher": true
}
]
}Version Fields
| Field | Type | Description |
|---|---|---|
version | string | Version string |
minecraftVersion | string | Minecraft version supported |
installerUrl | string | Installer JAR download URL |
launcherUrl | string | Launcher JAR download URL (v1.40-beta+) |
changelogUrl | string | Changelog URL |
isStable | boolean | true for stable releases |
hasLauncher | boolean | true if launcher is available (v1.40-beta+) |