List Tools
Retrieve all custom tools in your account
GET /v2/toolsQuery Parameters
| Parameter | Type | Description |
|---|---|---|
type | string | Filter by tool type (function, code, mcp) |
limit | integer | Max results (default: 50) |
offset | integer | Pagination offset |
Response
[
{
"id": "tool_abc123",
"name": "check_inventory",
"type": "function",
"description": "Check product inventory levels",
"parameters": {
"type": "object",
"properties": {
"product_id": {"type": "string"}
}
},
"endpoint_url": "https://api.example.com/inventory",
"created_at": "2026-03-25T10:00:00Z"
}
]