The Tags API exposes the Registry’s Tag catalog — the shared set of short labels that Resources can carry for browsing and filtering. Listing all Tags requires no authentication. Renaming a Tag (which affects every Resource currently carrying it) requires Admin role.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/org-quicko/skillset/llms.txt
Use this file to discover all available pages before exploring further.
Attaching or removing Tags from a specific Resource is done through
PUT /api/resources/:id/tags, not here. This API covers the catalog itself: listing Tags and renaming them.Endpoints at a glance
| Method | Path | Auth | Description |
|---|---|---|---|
| GET | /api/tags | None | List all Tags |
| PATCH | /api/tags/:id | Admin+ | Rename a Tag |
List all Tags
Response fields
All catalog Tags. Each entry has:
Rename a Tag
id and every Resource references the id, a rename is immediately visible everywhere the Tag is attached — no Resource needs to be republished.
Path parameters
UUID of the Tag to rename.
Request body
New name for the Tag. Must be lower-case, URL-safe, and no longer than 32 characters. Must not already be the name of another Tag.
Response
Returns the updated Tag object:{ "id": "...", "name": "..." }.
Error codes
| Code | Status | When |
|---|---|---|
not_found | 404 | No Tag exists with that id. |
tag_name_conflict | 409 | Another Tag already has that name. |
validation_failed | 400 | The new name failed the Tag name rules. |