curl --request GET \
--url https://api.example.com/api/tools/{id}Get a specific tool by ID
curl --request GET \
--url https://api.example.com/api/tools/{id}curl "https://app.orova.ai/api/tools/TOOL_ID" \
-H "x-api-key: YOUR_API_KEY"
| Parameter | Type | Description |
|---|---|---|
id | string | Tool ID |
{
"_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"
}