Skip to main content
GET
https://app.useduckie.ai
/
api
/
v1
/
tools
/
{tool_id}
Retrieve a tool
curl --request GET \
  --url https://app.useduckie.ai/api/v1/tools/{tool_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "is_write_action": true,
    "requires_approval": true,
    "enabled": true,
    "parameters": [
      {
        "name": "<string>",
        "type": "<string>",
        "required": true,
        "description": "<string>",
        "has_preset_value": true
      }
    ],
    "duckie": {
      "category": "<string>",
      "availability": "<string>"
    },
    "app": {
      "integration_id": "<string>",
      "integration_name": "<string>",
      "connection_status": "<string>"
    },
    "custom": {
      "endpoint": "<string>",
      "method": "<string>",
      "body_format": "<string>",
      "headers": [
        {
          "name": "<string>",
          "value": "<string>"
        }
      ],
      "http_timeout_sec": 123,
      "auth": {}
    },
    "mcp": {
      "server_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "server_name": "<string>",
      "mcp_tool_name": "<string>",
      "input_schema": {}
    },
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key created in Duckie Settings -> API Access.

Path Parameters

tool_id
string
required

Public tool ID. Duckie and app tools use duckie:<id> or app:<id>; custom and MCP tools use custom:<uuid> or mcp:<uuid>.

Response

Tool.

data
object
required