Get Tool
Retrieve a specific tool by ID.
HTTP Request
URL Parameters
Example Request
Response
Response Body
See List Tools for detailed field descriptions.
Retrieve a specific tool by ID.
$ GET https://app.resemble.ai/api/v2/agents/{agent_uuid}/tools/{id}
| Parameter | Type | Description |
|---|---|---|
| agent_uuid | string | The agent’s UUID |
| id | integer | The tool ID |
$ curl --request GET "https://app.resemble.ai/api/v2/agents/550e8400-e29b-41d4-a716-446655440000/tools/1" \ > -H "Authorization: Bearer YOUR_API_TOKEN" \ > -H "Content-Type: application/json"
1 { 2 "success": true, 3 "item": { 4 "id": 1, 5 "name": "check_weather", 6 "description": "Check weather for a given location", 7 "tool_type": "webhook", 8 "tool_config": { 9 "api_schema": { 10 "url": "https://api.weather.com/check", 11 "method": "GET" 12 }, 13 "parameters": {}, 14 "assignments": [], 15 "response_timeout_secs": 30 16 }, 17 "access_info": {}, 18 "usage_stats": {}, 19 "active": true, 20 "created_at": "2025-01-27T10:00:00Z", 21 "updated_at": "2025-01-27T10:00:00Z" 22 } 23 }
See List Tools for detailed field descriptions.
