GET
/
api
/
v1
/
tools
List custom tools
curl --request GET \
  --url https://prod.featherhq.com/api/v1/tools \
  --header 'X-API-Key: <api-key>'
{
  "tools": [
    {
      "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>"
    }
  ],
  "pagination": {
    "limit": 10,
    "nextCursor": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required

Query Parameters

cursor
string
limit
string
default:10

Response

200
application/json

List of tools retrieved successfully

The response is of type object.