Retrieve all tools within a specific toolkit, formatted in the tool calling structure compatible with AI model function calling.
Path Parameters
Unique identifier of the toolkit (UUID format)
Response
Returns an array of tool definitions in OpenAI function calling format:
Description of what the tool does
JSON Schema defining the tool’s input parameters
Always “object” for tool parameters
Object defining each parameter’s schema
Array of required parameter names
Example Response
[
{
"name": "search_web",
"description": "Search the web for information",
"parameters": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The search query"
},
"max_results": {
"type": "integer",
"description": "Maximum number of results to return"
}
},
"required": ["query"]
}
}
]
API Key for authentication
The response is of type Response Get Toolkit Tools V1 Toolkits Toolkit Id Tools Get · object[].