GET
/
api
/
v1
/
tools
/
{toolId}
Get tool details
curl --request GET \
  --url https://prod.featherhq.com/api/v1/tools/{toolId} \
  --header 'X-API-Key: <api-key>'
{
  "tool": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "structure": {
      "url": "<string>",
      "method": "GET",
      "headers": {},
      "body": {},
      "timeout": 30,
      "variables": [
        {
          "name": "<string>",
          "type": "str",
          "description": "<string>",
          "required": false
        }
      ]
    },
    "speech": "<string>",
    "slug": "<string>",
    "organizationId": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

toolId
string
required

The ID of the tool to retrieve

Response

200
application/json

Tool retrieved successfully

The response is of type object.