Skip to main content
GET
/
api
/
tools
/
{id}
Get Tool
curl --request GET \
  --url https://api.example.com/api/tools/{id}

Request

curl "https://app.orova.ai/api/tools/TOOL_ID" \
  -H "x-api-key: YOUR_API_KEY"

Path parameters

ParameterTypeDescription
idstringTool ID

Response

{
  "_id": "tool_abc123",
  "name": "Check Order Status",
  "type": "http",
  "description": "Use when the caller asks about their order status",
  "workspaceId": "WORKSPACE_ID",
  "config": {
    "method": "GET",
    "url": "https://api.yourcompany.com/orders/{order_id}",
    "headers": {
      "Authorization": "Bearer ****"
    }
  },
  "parameters": [
    {
      "name": "order_id",
      "description": "The customer order number",
      "required": true
    }
  ],
  "createdAt": "2025-01-01T00:00:00.000Z"
}