API Documentation JSON over HTTP

Minecraft Vanilla

Versions API

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

www.api.minecraftvanilla.net

Primary Endpoint

/v1/versions

Routing

Supports id, target, type and query-based pagination.

Main Endpoint

Core

Route Conventions

Paths

Clean routes are available for the most common lookups, while query parameters still handle pagination and optional flags.

Examples

Requests

Useful Query Parameters

Filters

Response Shape

Schema
{
  "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.