List all versions
Returns every visible Minecraft version.
Minecraft Vanilla
This root page documents the JSON endpoints exposed by this repository.
The main API lives under /v1/versions and supports exact lookups,
route-based filters and classic query parameters.
Base URL
Primary Endpoint
Routing
/v1/versionsClean routes are available for the most common lookups, while query parameters still handle pagination and optional flags.
/v1/versions/{id}/v1/versions/target/{verTarget}/v1/versions/type/{type}/v1/versions/target/{verTarget}/type/{type}limit, page and article=true still work on top of these routes.Returns every visible Minecraft version.
Returns one specific version by exact id.
Returns all versions whose release target is 1.21.
Returns every version with the given type.
Combines release target and version type.
api.minecraftvanilla.net/v1/versions/target/1.21/type/release
Returns paginated results.
Adds changelog/article content to the response.
idverTargettypelimitpagearticle=true* wildcardid and verTarget.{
"page": 1,
"pages": 1,
"limit": 10,
"versionsFound": 42,
"latest": {
"release": "1.21.4",
"dev": "25w07a"
},
"versions": [
{
"id": "1.21.4",
"type": "release",
"releaseTarget": "1.21.4"
}
]
}
Exact fields vary depending on the endpoint and available database data.