Are you an LLM? You can read better optimized documentation at /webapp/spec/get-tags.md for this page in Markdown format
Get Tags
Stable
Getting tags returns all tag strings currently in use across published mods in the registry. The list is used to populate the tag filter in the mod browser.
| Property | Value |
|---|---|
| Applies to | Webapp |
| Trigger | Client requests GET /api/tags |
| Preconditions | None |
Inputs
There are no inputs.
Assertions
| Assertion | Status |
|---|---|
| None — the operation always succeeds |
Outputs
string[] : A list of all distinct tag strings across published mods. May be empty if no mods have tags.
Effects
None. This is a read-only operation.
Behavior
mermaid
flowchart TD
Start([GET /api/tags]) --> Query[modRepository.findAllTags]
Query --> Done([string array])
style Done fill:#4ade80,color:#000See Also
- Browse mods — Spec page for filtering mods by tag.
- Get categories — Spec page for retrieving mod category counts.