API Endpoints
Version Details
Get details for a specific version
Version Details
GET /api/versions/{version}Parameters
| Parameter | Description |
|---|---|
version | Version string (e.g. 21.1.33-beta) |
Response
{
"groupId": "org.magmafoundation",
"artifactId": "magma",
"version": "21.1.33-beta",
"minecraftVersion": "1.21.x",
"installerUrl": "...",
"launcherUrl": "...",
"changelogUrl": "...",
"isStable": false,
"hasLauncher": true,
"hasInstaller": true,
"hasChangelog": true,
"fileSize": "36.25 MB",
"releaseDate": "2025-04-15"
}Includes all fields from the versions list, plus hasInstaller, hasChangelog, fileSize, and releaseDate.
Errors
| Status | Description |
|---|---|
| 400 | Missing or invalid version |
| 404 | Version not found |