Skip to content

Get Custom Tool

GET
/api/v3/organizations/{organisation}/ai/custom-tools/{toolName}
curl --request GET \
--url https://dashboard.quantcdn.io/api/v3/organizations/example/ai/custom-tools/example \
--header 'Authorization: Bearer <token>'

Retrieves a single registered custom tool by name.

organisation
required
string

The organisation ID

toolName
required
string

The tool name to retrieve

Custom tool retrieved successfully

Media typeapplication/json
object
tool
object
name
string
description
string
edgeFunctionUrl
string
edgeFunctionCode

The deployed edge function source code

string
isAsync
boolean
inputSchema
string
outputSchema
string
nullable
outputSchemaDescription
string
nullable
category
string
nullable
responseMode
string
nullable
Allowed values: llm direct
createdAt
string format: date-time
Example
{
"tool": {
"name": "check_inventory",
"description": "Check product inventory levels",
"edgeFunctionUrl": "https://preview.quantcdn.io/_quant/ai-exec/org/project/uuid",
"isAsync": false,
"responseMode": "llm"
}
}

Access denied

Tool not found

Failed to retrieve custom tools