Skip to content

List tool names only (lightweight response)

GET
/api/v3/organizations/{organisation}/ai/tools/names
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.

organisation
required
string

The organisation ID

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