Tags
Tags are static enumerable values used to categorize or filter projects and versions.
Get categories
Returns a list of all available project categories.
json
[
{
"name": "shadows",
"projectTypes": ["shader"],
"type": "feature",
"isDisplayed": true
},
{
"name": "realistic",
"projectTypes": ["resource-pack", "shader"],
"type": "category",
"isDisplayed": true
},
...
]Query parameters
Filter by project type
key:type
type:ENUM{ mod | modpack | shader | resource-pack | datamod | plugin | world }
Example:type=shaderNames only
key:namesOnly
type:true | false
default:false
Iftrue, returns a plainstring[]of category names instead of full objects.
Get game versions
Returns a list of all supported game versions.
json
[
{
"label": "0.3.16",
"value": "0.3.16",
"releaseType": "release",
"major": true
},
{
"label": "0.3.15-beta.1",
"value": "0.3.15-beta.1",
"releaseType": "beta",
"major": false
},
...
]Get loaders
Returns a list of all supported loaders/platforms.
json
[
{
"name": "quilt",
"supportedProjectTypes": ["mod", "modpack", "world"]
},
{
"name": "simply_shaders",
"supportedProjectTypes": ["shader"]
},
...
]Query parameters
- Filter by project type
key:type
type:ENUM{ mod | modpack | shader | resource-pack | datamod | plugin | world }
Example:type=mod
Get licenses
Returns the full SPDX license list.
json
[
{
"name": "MIT License",
"licenseId": "MIT",
"url": "https://spdx.org/licenses/MIT"
},
{
"name": "Apache License 2.0",
"licenseId": "Apache-2.0",
"url": "https://spdx.org/licenses/Apache-2.0"
},
...
]Get featured licenses
GET /api/tags/licenses/featured
Returns a curated subset of commonly used licenses.
json
[
{
"name": "MIT License",
"licenseId": "MIT",
"url": "https://spdx.org/licenses/MIT"
},
...
]Get a specific license
Returns the full license text for a single license by its SPDX ID.
json
{
"name": "MIT License",
"licenseId": "MIT",
"url": "https://spdx.org/licenses/MIT",
"text": "MIT License\n\nCopyright (c) ...\n\nPermission is hereby granted..."
}Get project types
Returns a list of all supported project type identifiers.
json
["mod", "modpack", "shader", "resource-pack", "datamod", "plugin", "world"]