List tool names only (lightweight response)
GET
/api/v3/organizations/{organisation}/ai/tools/names
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/tools/names';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://dashboard.quantcdn.io/api/v3/organizations/example/ai/tools/names \ --header 'Authorization: Bearer <token>'Retrieves just the names of available built-in tools. Useful for quick validation or UI dropdown population without the full tool specifications.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
The organisation ID
Responses
Section titled “Responses”Tool names retrieved successfully
Media typeapplication/json
object
tools
required
Array of tool names
Array<string>
count
required
Number of tools
integer
Example
{ "tools": [ "get_weather", "calculate", "search_web", "generate_image" ], "count": 4}Access denied
Failed to fetch tool names
