We make no monetary gain from these advertisements and are simply promoting these organizations out of the kindness of our hearts.
Fetch a direct download link to a specific jar type with either the latest version or a specified one.
Parameter | Type | Description |
---|---|---|
type | String | The type of jar (spigot, bukkit, paper, etc...) |
version Optional | Version | The version of the jar (dont provide for latest) |
Fetch details on the latest jar for a type
Parameter | Type | Description |
---|---|---|
type | String | The type of jar (spigot, bukkit, paper, etc..) |
{
"status": "success",
"response": {
"version": "1.18.2",
"file": "spigot-1.18.2.jar",
"md5": "ff98c742b5a8717ee4edfa7ba6148e19",
"built": 1653042278000,
"stability": "unstable"
}
}
Fetch details on the all the jars for a type
Parameter | Type | Description |
---|---|---|
type | String | The type of jars (spigot, bukkit, paper, etc..) |
max Optional | Integer | The maximum amount of results to respond with. (Default: 5) |
{
"status": "success",
"response": [
{
"version": "1.18.2",
"file": "spigot-1.18.2.jar",
"md5": "ff98c742b5a8717ee4edfa7ba6148e19",
"built": 1653042278000,
"stability": "unstable"
}
]
}
Fetch a list of the possible jar types.
Parameter | Type | Description |
---|---|---|
type Optional | String | The category of types (bedrock, proxies, servers, etc...). Leave empty to see the list of all types and subcategories |
{
"status": "success",
"response": {
"servers": [
"bukkit",
"paper",
"spigot",
"purpur",
"tuinity"
]
}
}