Modpacks

List (GET)

To get the list with all the available modpacks a GET request to /v3/client/versions will return an JSON data with it:

{
    "message": "Lista de modpacks",
    "modpacks": [
        {
            "name": "fursmpnh",
            "manifestUrl": "/v3/client/modpacks/fursmpnh/2-0-0",
            "lastVersion": "2-0-0",
            "versions": [
                "1-0-0",
                "1-1-2",
                "1-2-3",
                "2-0-0"
            ],
            "id": "fursmpnh"
        },
        {
            "name": "fursmpdw",
            "manifestUrl": null,
            "lastVersion": null,
            "versions": [],
            "id": "fursmpdw"
        }
    ],
    "error": null
}

List versions (GET)

To get a list with all the versions available from a modpack a GET request to the /v3/client/modpacks/{modpackName} endpoint being the {modpackName} the modpack name

If the server can't find the modpack it will return a 404 code

If successful it will return a 200 code with a JSON data like this:

Get version data (GET)

To get the data from an expecific version of a modpack a GET request to the /v3/client/modpacks/{modpackName}/{version} endpoint being the {modpackName} the modpack name and the {version} the modpack version

If the server can't find the modpack or the version it will return a 404 code

If successful it will return a 200 code with a JSON data like this:

Last updated