Description
Searches for instances whose names contain a specified query string. The search is case-insensitive and performs substring matching. You can optionally scope the search to a specific path and limit the number of results.HTTP Endpoint
Request Parameters
The search query (case-insensitive substring match)
Root path to search within. Defaults to
game (searches entire place). Examples: "Workspace", "ServerScriptService"Maximum number of results to return
Response Format
Array of matching instances
Number of results returned
True if more results exist beyond the limit
Error message if path resolution failed
Example
Implementation Details
FromInstanceTools.lua:97-130:
- Performs case-insensitive substring search using
string.find() - Recursively scans all descendants
- Stops searching when limit is reached
- Returns full instance paths using
buildPath()