Skip to main content
GET
/
api
/
tools
/
{tool_id}
Get Tool
curl --request GET \
  --url https://api.example.com/api/tools/{tool_id}
{
  "tool_id": "tool_123",
  "client_id": "org_1",
  "name": "GetOrderStatus",
  "description": "Retrieves the status of a customer order",
  "url": "https://api.shop.com/orders/{order_id}",
  "method": "GET",
  "created_at": "2024-01-01T00:00:00Z"
}
Get configuration details of a specific tool.
tool_id
string
required
The unique identifier of the tool.

Response

Returns the full tool configuration object.
{
  "tool_id": "tool_123",
  "client_id": "org_1",
  "name": "GetOrderStatus",
  "description": "Retrieves the status of a customer order",
  "url": "https://api.shop.com/orders/{order_id}",
  "method": "GET",
  "created_at": "2024-01-01T00:00:00Z"
}