Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/nnaridz/RbxGenie/llms.txt

Use this file to discover all available pages before exploring further.

Description

Retrieves all CollectionService tags applied to a specific instance.

Endpoint

get_tags

Parameters

path
string
required
The path to the instance (e.g., “Workspace.Part” or “ReplicatedStorage.Enemy”)

Response

tags
array
An array of tag strings applied to the instance
error
string
Error message if the instance path could not be resolved

Examples

Get tags from an instance

{
  "path": "Workspace.Enemy"
}
Response:
{
  "tags": ["Enemy", "Hostile", "Spawnable"]
}

Instance with no tags

{
  "path": "Workspace.EmptyPart"
}
Response:
{
  "tags": []
}

Error handling

{
  "path": "Workspace.NonExistent"
}
Response:
{
  "error": "Instance not found: Workspace.NonExistent"
}