AgentToolService

Get Agent Tool

Fetch a single tool by ID for the authenticated organization.

get/api/v1/tools/{id}/

Path parameters

idstring uuid required

Tool UUID.

Response

Tool fetched successfully

successboolean
messagestring

Example response

{
  "success": true,
  "message": "Tool fetched successfully",
  "data": {
    "definition": {
      "url": "https://example.com/book",
      "method": "POST",
      "parameters": {
        "type": "object"
      }
    }
  }
}

Changes